summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ae3e76c)
raw | patch | inline | side by side (parent: ae3e76c)
author | Brian Gernhardt <benji@silverinsanity.com> | |
Sun, 4 Nov 2007 15:31:26 +0000 (10:31 -0500) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 5 Nov 2007 23:04:57 +0000 (15:04 -0800) |
On a case insensitive file system, this test fails because git-diff
doesn't know if it is asking for the file "A" or the tag "a".
Adding "--" at the end of the ambiguous commands allows the test to
finish properly.
Signed-off-by: Brian Gernhardt <benji@silverinsanity.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
doesn't know if it is asking for the file "A" or the tag "a".
Adding "--" at the end of the ambiguous commands allows the test to
finish properly.
Signed-off-by: Brian Gernhardt <benji@silverinsanity.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t3502-cherry-pick-merge.sh | patch | blob | history |
index 3274c6141bceac3f6d8bf871c3e380818f9fab16..7c92e261fcc87adc1a00c1832284816e40dee55d 100755 (executable)
git reset --hard &&
git checkout a^0 &&
! git cherry-pick -m 1 b &&
- git diff --exit-code a
+ git diff --exit-code a --
'
git reset --hard &&
git checkout a^0 &&
! git cherry-pick c &&
- git diff --exit-code a
+ git diff --exit-code a --
'
git reset --hard &&
git checkout c^0 &&
git revert -m 1 c &&
- git diff --exit-code a
+ git diff --exit-code a --
'
git reset --hard &&
git checkout c^0 &&
git revert -m 2 c &&
- git diff --exit-code b
+ git diff --exit-code b --
'