summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2010-12-12 21:49:51 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2010-12-12 21:49:51 -0800
commit6b236bfcb011048a4c2abc6b44290c738a3de699 (patch)
treefc18368e1311b9fdcd0d0dd47d5a65bb04a364cd /t
parentMerge branch 'jk/maint-reflog-bottom' (diff)
parentrebase --abort: do not update branch ref (diff)
downloadtgif-6b236bfcb011048a4c2abc6b44290c738a3de699.tar.xz
Merge branch 'mz/rebase-abort-reflog-fix'
* mz/rebase-abort-reflog-fix: rebase --abort: do not update branch ref
Diffstat (limited to 't')
-rwxr-xr-xt/t3407-rebase-abort.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/t/t3407-rebase-abort.sh b/t/t3407-rebase-abort.sh
index fbb3f2e0df..e573dc845b 100755
--- a/t/t3407-rebase-abort.sh
+++ b/t/t3407-rebase-abort.sh
@@ -72,6 +72,18 @@ testrebase() {
test $(git rev-parse to-rebase) = $(git rev-parse pre-rebase) &&
test ! -d "$dotest"
'
+
+ test_expect_success "rebase$type --abort does not update reflog" '
+ cd "$work_dir" &&
+ # Clean up the state from the previous one
+ git reset --hard pre-rebase &&
+ git reflog show to-rebase > reflog_before &&
+ test_must_fail git rebase$type master &&
+ git rebase --abort &&
+ git reflog show to-rebase > reflog_after &&
+ test_cmp reflog_before reflog_after &&
+ rm reflog_before reflog_after
+ '
}
testrebase "" .git/rebase-apply