]> git.ipfire.org Git - people/ms/ipfire-3.x.git/commitdiff
Removed that silly question to push after commit.
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 21 Jan 2009 20:57:53 +0000 (21:57 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 21 Jan 2009 20:57:53 +0000 (21:57 +0100)
tools/make-git

index 0205eaee1860d7f301b7f6a14249025bbbb53515..8253b67f743a1ea87e971d21181444e834d5fa3d 100755 (executable)
@@ -102,17 +102,6 @@ git_commit() {
        git commit $*
        
        [ "$?" -eq "0" ] || exiterror "git commit $* failed."
-       
-       echo -e "${BOLD}Do you want to push, too? [y/N]${NORMAL}"
-       read
-       [ -z $REPLY ] && return 0
-       for i in y Y j J; do
-               if [ "$i" == "$REPLY" ]; then
-                       git_push
-                       return $?
-               fi
-       done
-       exiterror "\"$REPLY\" is not a valid answer."
 }
 
 git_diff() {