diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-07 16:29:13 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-07 16:29:13 +0200 |
commit | b9402bd52dc47ef3b6bf439276ec536fe9ddb18a (patch) | |
tree | adef95cc9ac7a6661871a02a8b4f34ca54560bba /git/commit.sh |
Start with git helper scripts and extra documentation
Diffstat (limited to 'git/commit.sh')
-rwxr-xr-x | git/commit.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/git/commit.sh b/git/commit.sh new file mode 100755 index 0000000..5c143d4 --- /dev/null +++ b/git/commit.sh @@ -0,0 +1,20 @@ +#! /bin/sh + +# Assume this script never run via PATH. +# +self=`realpath $0` +. `dirname $self`/modules + +if [ "$1" = "" ]; then +echo "missing commit message" 1>&2 +exit 1 +fi + +wd=`pwd` + +for i in $modules; do + cd $i 1>&2 + git add . + git ci -m "$1" + cd $wd +done |