From 6d521f3b3f1b63b7af6de5ca30957f4dc2a53852 Mon Sep 17 00:00:00 2001 From: vrana Date: Wed, 30 Jan 2013 17:57:06 -0800 Subject: [PATCH] Disable pull stat in arc land Test Plan: $ git pull --no-stat Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4754 --- src/workflow/ArcanistLandWorkflow.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/workflow/ArcanistLandWorkflow.php b/src/workflow/ArcanistLandWorkflow.php index 0839aaf8..79b3e789 100644 --- a/src/workflow/ArcanistLandWorkflow.php +++ b/src/workflow/ArcanistLandWorkflow.php @@ -385,7 +385,7 @@ EOTEXT $local_ahead_of_remote = false; if ($this->isGit) { try { - $repository_api->execxLocal('pull --ff-only'); + $repository_api->execxLocal('pull --ff-only --no-stat'); } catch (CommandException $ex) { if (!$this->isGitSvn) { throw $ex;