summaryrefslogtreecommitdiff
path: root/git-rebase--interactive.sh
diff options
context:
space:
mode:
authorDave Olszewski <cxreg@pobox.com>2010-03-15 04:48:22 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-03-15 06:08:09 (GMT)
commit2ec33cdd19bd80308fcef45828e37e79c4b56dc5 (patch)
treeb6349412abf63f39f70dc2fb4c262d72b4f86d23 /git-rebase--interactive.sh
parent3a27f415dfa46bd9e5b693abcac708903d3134f4 (diff)
downloadgit-2ec33cdd19bd80308fcef45828e37e79c4b56dc5.zip
git-2ec33cdd19bd80308fcef45828e37e79c4b56dc5.tar.gz
git-2ec33cdd19bd80308fcef45828e37e79c4b56dc5.tar.bz2
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 <cxreg@pobox.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-rebase--interactive.sh')
-rwxr-xr-xgit-rebase--interactive.sh2
1 files changed, 0 insertions, 2 deletions
diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh
index 3e4fd14..d047dcb 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