Creating your own Super Repo

Create the commit.sh script. This script will automatically roll up the submodule commit logs and create a super repo commit message with them. An optional message can be added as an argument.

```
#!/bin/sh

#
# This script will commit the submodule changes to the Ciniki super repo
#
if [ $# -eq 0 ]; then
MSG="Module Updates:
"
else
MSG="$1

Module Updates:
"
fi

if [ $# -gt 1 ]
then
echo "Too many arguments, put your message quotes.\n";
exit;
fi

SUMMARY=`git submodule summary`;

echo "$MSG$SUMMARY"
git commit -am "$MSG$SUMMARY"
```

Set the script executable and add the script to git:
```
chmod +x commit.sh
git add commit.sh
```