Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
rebase -i: align variable names
[gitweb.git]
/
t
/
t3418-rebase-continue.sh
diff --git
a/t/t3418-rebase-continue.sh
b/t/t3418-rebase-continue.sh
index 3b0d27350e8a0fe43bb7735bc614462347aed3e0..1d90191e542ad43d9d21837b9515b1b8ab647350 100755
(executable)
--- a/
t/t3418-rebase-continue.sh
+++ b/
t/t3418-rebase-continue.sh
@@
-40,4
+40,9
@@
test_expect_success 'non-interactive rebase --continue works with touched file'
git rebase --continue
'
+test_expect_success 'rebase --continue can not be used with other options' '
+ test_must_fail git rebase -v --continue &&
+ test_must_fail git rebase --continue -v
+'
+
test_done