diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-05-05 11:12:12 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-05-05 11:12:12 -0700 |
commit | 2be2eb970c14a35a9a0a5a73130ade8c87ab8ff2 (patch) | |
tree | c59837d5d602d7f55599978ea73968d32bb21cb8 /t | |
parent | Git 1.8.3-rc1 (diff) | |
parent | transport-helper: improve push messages (diff) | |
download | tgif-2be2eb970c14a35a9a0a5a73130ade8c87ab8ff2.tar.xz |
Merge branch 'fc/push-with-export-reporting-result'
* fc/push-with-export-reporting-result:
transport-helper: improve push messages
Diffstat (limited to 't')
-rwxr-xr-x | t/t5801-remote-helpers.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/t/t5801-remote-helpers.sh b/t/t5801-remote-helpers.sh index 69212cdde1..dbb02e2afd 100755 --- a/t/t5801-remote-helpers.sh +++ b/t/t5801-remote-helpers.sh @@ -186,4 +186,18 @@ test_expect_success GPG 'push signed tag with signed-tags capability' ' compare_refs local signed-tag-2 server signed-tag-2 ' +test_expect_success 'push messages' ' + (cd local && + git checkout -b new_branch master && + echo new >>file && + git commit -a -m new && + git push origin new_branch && + git fetch origin && + echo new >>file && + git commit -a -m new && + git push origin new_branch 2> msg && + ! grep "\[new branch\]" msg + ) +' + test_done |