]> Pileus Git - ~andy/git/commitdiff
rebase -i: execute hook only after argument checking
authorThomas Rast <trast@student.ethz.ch>
Fri, 2 Jan 2009 22:28:26 +0000 (23:28 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sat, 3 Jan 2009 22:22:50 +0000 (14:22 -0800)
Previously, the pre-rebase-hook would be launched before we knew if
the <upstream> [<branch>] arguments were supplied.

Signed-off-by: Thomas Rast <trast@student.ethz.ch>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-rebase--interactive.sh

index c8b0861c085035c85002f6e2fe969369ea32016f..2c668cd81acdff723963163aee82ceb6289b45a7 100755 (executable)
@@ -554,7 +554,6 @@ first and then run 'git rebase --continue' again."
                ;;
        --)
                shift
-               run_pre_rebase_hook ${1+"$@"}
                test $# -eq 1 -o $# -eq 2 || usage
                test -d "$DOTEST" &&
                        die "Interactive rebase already started"
@@ -562,11 +561,13 @@ first and then run 'git rebase --continue' again."
                git var GIT_COMMITTER_IDENT >/dev/null ||
                        die "You need to set your committer info first"
 
+               UPSTREAM=$(git rev-parse --verify "$1") || die "Invalid base"
+               run_pre_rebase_hook ${1+"$@"}
+
                comment_for_reflog start
 
                require_clean_work_tree
 
-               UPSTREAM=$(git rev-parse --verify "$1") || die "Invalid base"
                test -z "$ONTO" && ONTO=$UPSTREAM
 
                if test ! -z "$2"