mirror of
https://github.com/git/git.git
synced 2024-11-18 02:23:52 +01:00
git-clone: honor --quiet
I noticed that a cron-launched "git-clone --quiet" was generating progress output to standard error -- and thus always spamming me. The offending output was due to git-clone invoking git-read-tree with its undocumented -v option. This change turns off "-v" for --quiet. Signed-off-by: Jim Meyering <jim@meyering.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
0cc6d3464a
commit
810799ecab
@ -414,7 +414,8 @@ Pull: refs/heads/$head_points_at:$origin_track" &&
|
||||
|
||||
case "$no_checkout" in
|
||||
'')
|
||||
git-read-tree -m -u -v HEAD HEAD
|
||||
test "z$quiet" = z && v=-v || v=
|
||||
git-read-tree -m -u $v HEAD HEAD
|
||||
esac
|
||||
fi
|
||||
rm -f "$GIT_DIR/CLONE_HEAD" "$GIT_DIR/REMOTE_HEAD"
|
||||
|
Loading…
Reference in New Issue
Block a user