diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-04-30 04:50:24 (GMT) |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-04-30 04:50:25 (GMT) |
commit | a819e2b3ef7c27d04befa0a345c9e6e3c7a7965e (patch) | |
tree | 33b1d63ea4be4c1c51a97377849b5a70025b12b3 /t/t5523-push-upstream.sh | |
parent | 279a2e637a69afd6157e8287c2599e8ae5e6cb8c (diff) | |
parent | f3cce896a8e14e4732f45a6ee46f77e7ed17a990 (diff) | |
download | git-a819e2b3ef7c27d04befa0a345c9e6e3c7a7965e.zip git-a819e2b3ef7c27d04befa0a345c9e6e3c7a7965e.tar.gz git-a819e2b3ef7c27d04befa0a345c9e6e3c7a7965e.tar.bz2 |
Merge branch 'ow/push-quiet-set-upstream'
"git push --quiet --set-upstream" was not quiet when setting the
upstream branch configuration, which has been corrected.
* ow/push-quiet-set-upstream:
transport: respect verbosity when setting upstream
Diffstat (limited to 't/t5523-push-upstream.sh')
-rwxr-xr-x | t/t5523-push-upstream.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t5523-push-upstream.sh b/t/t5523-push-upstream.sh index 9fbe7f7..fdb4292 100755 --- a/t/t5523-push-upstream.sh +++ b/t/t5523-push-upstream.sh @@ -119,4 +119,11 @@ test_expect_success TTY 'quiet push' ' test_must_be_empty output ' +test_expect_success TTY 'quiet push -u' ' + ensure_fresh_upstream && + + test_terminal git push --quiet -u --no-progress upstream main 2>&1 | tee output && + test_must_be_empty output +' + test_done |