From fcc11b3a278199fa15b90692aba65f54fef5d7f7 Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 10 Feb 2016 13:08:46 -0800 Subject: [PATCH] Add --quiet to `git fetch` on `arc land` Summary: This makes it a bit quieter. Test Plan: shh Reviewers: chad Reviewed By: chad Differential Revision: https://secure.phabricator.com/D15236 --- src/land/ArcanistGitLandEngine.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/land/ArcanistGitLandEngine.php b/src/land/ArcanistGitLandEngine.php index 0fe154d1..0e798509 100644 --- a/src/land/ArcanistGitLandEngine.php +++ b/src/land/ArcanistGitLandEngine.php @@ -134,7 +134,7 @@ final class ArcanistGitLandEngine // authentication. See T10314. $err = $api->execPassthru( - 'fetch -- %s %s', + 'fetch --quiet -- %s %s', $this->getTargetRemote(), $this->getTargetOnto());