Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-04-03 23:28:38 +0400
committerJunio C Hamano <gitster@pobox.com>2010-04-03 23:28:38 +0400
commitdf9930c129d4cfe4d39e5e4688a6a55a2bca0050 (patch)
tree88fc77f49407ca34c62f0ca53b4f0e6b84e81ecb
parent7135046b8b4740cbbc4ad478f4e0b3ea04d6ad05 (diff)
parent2ec33cdd19bd80308fcef45828e37e79c4b56dc5 (diff)
Merge branch 'do/rebase-i-arbitrary'
* do/rebase-i-arbitrary: rebase--interactive: don't require what's rebased to be a branch Conflicts: t/t3404-rebase-interactive.sh
-rwxr-xr-xgit-rebase--interactive.sh2
-rwxr-xr-xt/t3404-rebase-interactive.sh9
2 files changed, 9 insertions, 2 deletions
diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh
index 1d116bfae2..2ff211cbaa 100755
--- a/git-rebase--interactive.sh
+++ b/git-rebase--interactive.sh
@@ -823,8 +823,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
diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh
index 19668c2c92..b0b43c6d32 100755
--- a/t/t3404-rebase-interactive.sh
+++ b/t/t3404-rebase-interactive.sh
@@ -577,4 +577,13 @@ test_expect_success 'rebase -i can copy notes over a fixup' '
test_cmp expect output
'
+test_expect_success 'rebase while detaching HEAD' '
+ git symbolic-ref HEAD &&
+ grandparent=$(git rev-parse HEAD~2) &&
+ test_tick &&
+ FAKE_LINES="2 1" git rebase -i HEAD~2 HEAD^0 &&
+ test $grandparent = $(git rev-parse HEAD~2) &&
+ test_must_fail git symbolic-ref HEAD
+'
+
test_done