Revert "Merge branch 'cb/maint-quiet-push' into maint"
This reverts commitffa69e61d3
, reversing changes made to4a13c4d148
. Adding a new command line option to receive-pack and feed it from send-pack is not an acceptable way to add features, as there is no guarantee that your updated send-pack will be talking to updated receive-pack. New features need to be added via the capability mechanism negotiated over the protocol. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
@ -762,9 +762,7 @@ static int push_git(struct discovery *heads, int nr_spec, char **specs)
|
||||
argv[argc++] = "--thin";
|
||||
if (options.dry_run)
|
||||
argv[argc++] = "--dry-run";
|
||||
if (options.verbosity < 0)
|
||||
argv[argc++] = "--quiet";
|
||||
else if (options.verbosity > 1)
|
||||
if (options.verbosity > 1)
|
||||
argv[argc++] = "--verbose";
|
||||
argv[argc++] = url;
|
||||
for (i = 0; i < nr_spec; i++)
|
||||
|
Reference in New Issue
Block a user