From 2ec33cdd19bd80308fcef45828e37e79c4b56dc5 Mon Sep 17 00:00:00 2001 From: Dave Olszewski Date: Sun, 14 Mar 2010 21:48:22 -0700 Subject: rebase--interactive: don't require what's rebased to be a branch git rebase allows you to specify a non-branch commit-ish as the "branch" argument, which leaves HEAD detached when it's finished. This is occasionally useful, and this patch brings the same functionality to git rebase --interactive. Signed-off-by: Dave Olszewski Signed-off-by: Junio C Hamano --- git-rebase--interactive.sh | 2 -- 1 file changed, 2 deletions(-) (limited to 'git-rebase--interactive.sh') diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh index 3e4fd1456..d047dcb3e 100755 --- a/git-rebase--interactive.sh +++ b/git-rebase--interactive.sh @@ -783,8 +783,6 @@ first and then run 'git rebase --continue' again." if test ! -z "$1" then - output git show-ref --verify --quiet "refs/heads/$1" || - die "Invalid branchname: $1" output git checkout "$1" || die "Could not checkout $1" fi -- cgit v1.2.1