diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-01-17 15:58:58 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-01-17 15:58:58 -0800 |
commit | 42aac96763a72b5bac73d34640d3a0c6233027a6 (patch) | |
tree | 8979b93510d3d1fe1334c72fc47c4f91c90b07f3 /t | |
parent | d0605072911a4c93a7eacf1fb55e79227c457e34 (diff) | |
parent | 5a518ad4679c91f0d0afd38fcc3cbf04e8699c46 (diff) | |
download | git-42aac96763a72b5bac73d34640d3a0c6233027a6.tar.gz |
Merge branch 'tc/clone-v-progress'
* tc/clone-v-progress:
clone: use --progress to force progress reporting
clone: set transport->verbose when -v/--verbose is used
git-clone.txt: reword description of progress behaviour
check stderr with isatty() instead of stdout when deciding to show progress
Conflicts:
transport.c
Diffstat (limited to 't')
-rwxr-xr-x | t/t5702-clone-options.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t5702-clone-options.sh b/t/t5702-clone-options.sh index 27825f5f31..02cb024723 100755 --- a/t/t5702-clone-options.sh +++ b/t/t5702-clone-options.sh @@ -27,7 +27,8 @@ test_expect_success 'redirected clone' ' ' test_expect_success 'redirected clone -v' ' - git clone -v "file://$(pwd)/parent" clone-redirected-v >out 2>err && + git clone --progress "file://$(pwd)/parent" clone-redirected-progress \ + >out 2>err && test -s err ' |