diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-12 17:01:33 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-12 17:01:33 +0200 |
commit | d091725b9af5057d0ff85fb84bb792450b4a1f92 (patch) | |
tree | cd3f74275a0d42c02db2b219201589b08555e927 /git/commit.sh | |
parent | d6477bdc97008e9bdd14cc4e31fcce82734afc74 (diff) |
Remove git scripts, they are now in separate repositoryas
Diffstat (limited to 'git/commit.sh')
-rwxr-xr-x | git/commit.sh | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/git/commit.sh b/git/commit.sh deleted file mode 100755 index aa96c8c..0000000 --- a/git/commit.sh +++ /dev/null @@ -1,58 +0,0 @@ -#! /bin/sh - -# Assume this script never run via PATH. -# -self=`realpath $0` -. `dirname $self`/modules - -wd=`pwd` - -if [ "$1" = "-i" ]; then - add=n -else - add=y -fi - -if [ "$EDITOR" = "" ]; then - echo "no editor specified with the EDITOR variable" 1>&2 - exit 1 -fi - -msg_file=`mktemp -p /tmp` -$EDITOR "$msg_file" - -if [ $? -ne 0 ]; then - echo "$EDITOR failed" 1>&2 - rm -f $msg_file - exit 1 -fi - -if test ! -s "$msg_file"; then - echo "commit message is empty" 1>&2 - rm -f $msg_file - exit 1 -fi - -for i in $modules; do - echo "commit $i" 1>&2 - cd $i - if [ "$add" = "y" ]; then - git add . - - if [ $? -ne 0 ]; then - echo "add FAILED" 1>&2 - exit 1 - fi - - fi - git commit -F $msg_file - -# if [ $? -ne 0 ]; then -# echo "commit FAILED" 1>&2 -# exit 1 -# fi - - cd $wd -done - -rm -f $msg_file |