diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-04-23 14:37:22 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-05-04 10:02:46 -0700 |
commit | 28ba96ab27d0471af101b4796534ad4085019db1 (patch) | |
tree | 6c6ab12694492b11a177dbc92a8f901079b767e5 /t/t5601-clone.sh | |
parent | 64b90323f65d2a3ac8d1ff4ed73be881f76aac8a (diff) | |
download | git-28ba96ab27d0471af101b4796534ad4085019db1.tar.gz |
clone: quell the progress report from init and report on clone
Currently, a local git clone reports only initializing an empty
git dir, which is potentially confusing.
Instead, report that cloning is in progress and when it is done
(unless -q) is given, and suppress the init report.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5601-clone.sh')
-rwxr-xr-x | t/t5601-clone.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5601-clone.sh b/t/t5601-clone.sh index 214756731b..678cee502d 100755 --- a/t/t5601-clone.sh +++ b/t/t5601-clone.sh @@ -34,7 +34,7 @@ test_expect_success 'clone with excess parameters (2)' ' test_expect_success 'output from clone' ' rm -fr dst && git clone -n "file://$(pwd)/src" dst >output && - test $(grep Initialized output | wc -l) = 1 + test $(grep Clon output | wc -l) = 1 ' test_expect_success 'clone does not keep pack' ' |