diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-10-17 01:52:32 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-10-17 01:52:32 -0700 |
commit | 46dc1b0e332612aa32c139007fa33f4b429de9d1 (patch) | |
tree | 86e934ac60e69c03c44a9d59eab6e400c16efb5f /t/t7600-merge.sh | |
parent | Add Linux PPC support to the pre-auto-gc example hook (diff) | |
parent | t1301-shared-repo.sh: don't let a default ACL interfere with the test (diff) | |
download | tgif-46dc1b0e332612aa32c139007fa33f4b429de9d1.tar.xz |
Merge branch 'maint'
* maint:
t1301-shared-repo.sh: don't let a default ACL interfere with the test
git-check-attr(1): add output and example sections
xdiff-interface.c: strip newline (and cr) from line before pattern matching
t4018-diff-funcname: demonstrate end of line funcname matching flaw
t4018-diff-funcname: rework negated last expression test
Typo "does not exists" when git remote update remote.
remote.c: correct the check for a leading '/' in a remote name
Add testcase to ensure merging an early part of a branch is done properly
Conflicts:
t/t7600-merge.sh
Diffstat (limited to 't/t7600-merge.sh')
-rwxr-xr-x | t/t7600-merge.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/t/t7600-merge.sh b/t/t7600-merge.sh index 7313ac278c..3a36a95b9a 100755 --- a/t/t7600-merge.sh +++ b/t/t7600-merge.sh @@ -518,6 +518,30 @@ test_expect_success 'refresh the index before merging' ' git merge c3 ' +cat >expected <<EOF +Merge branch 'c5' (early part) +EOF + +test_expect_success 'merge early part of c2' ' + git reset --hard c3 && + echo c4 > c4.c && + git add c4.c && + git commit -m c4 && + git tag c4 && + echo c5 > c5.c && + git add c5.c && + git commit -m c5 && + git tag c5 && + git reset --hard c3 && + echo c6 > c6.c && + git add c6.c && + git commit -m c6 && + git tag c6 && + git merge c5~1 && + git show -s --pretty=format:%s HEAD > actual && + test_cmp actual expected +' + test_debug 'gitk --all' test_done |