diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-07-19 10:40:57 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-19 10:40:57 -0700 |
commit | 8589a74b191f1842b633020e28de1c4a1c7f607c (patch) | |
tree | 6f951d7711f1dd10a3fab80efd77635433d89497 | |
parent | 509152d3fa543bd3e030825ecefda298bbc4dfa7 (diff) | |
parent | f0c73200e86b6166596f45ce32b7f04291074182 (diff) | |
download | git-8589a74b191f1842b633020e28de1c4a1c7f607c.tar.gz |
Merge branch 'tr/test-commit-only-on-orphan' into maint
* tr/test-commit-only-on-orphan:
Test 'commit --only' after 'checkout --orphan'
-rwxr-xr-x | t/t7501-commit.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/t/t7501-commit.sh b/t/t7501-commit.sh index 195e7477d8..99ce36f5ef 100755 --- a/t/t7501-commit.sh +++ b/t/t7501-commit.sh @@ -524,4 +524,17 @@ test_expect_success 'commit a file whose name is a dash' ' test_i18ngrep " changed, 5 insertions" output ' +test_expect_success '--only works on to-be-born branch' ' + # This test relies on having something in the index, as it + # would not otherwise actually prove much. So check this. + test -n "$(git ls-files)" && + git checkout --orphan orphan && + echo foo >newfile && + git add newfile && + git commit --only newfile -m"--only on unborn branch" && + echo newfile >expected && + git ls-tree -r --name-only HEAD >actual && + test_cmp expected actual +' + test_done |