Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
rev-list: refuse --first-parent combined with --bisect
[gitweb.git]
/
t
/
t6000-rev-list-misc.sh
diff --git
a/t/t6000-rev-list-misc.sh
b/t/t6000-rev-list-misc.sh
index 3794e4ceafc291be5621411f3cad7bf5ef764942..97a13a574e09edb7b70782e357d5b1231747e053 100755
(executable)
--- a/
t/t6000-rev-list-misc.sh
+++ b/
t/t6000-rev-list-misc.sh
@@
-73,4
+73,8
@@
test_expect_success 'symleft flag bit is propagated down from tag' '
test_cmp expect actual
'
+test_expect_success '--bisect and --first-parent can not be combined' '
+ test_must_fail git rev-list --bisect --first-parent HEAD
+'
+
test_done