From 8f0b0d379ff16de4ac3b5512ef6982d67b229754 Mon Sep 17 00:00:00 2001 From: vrana Date: Mon, 11 Feb 2013 10:51:17 -0800 Subject: [PATCH] Support short version of arc diff --add-all Summary: Like `git commit -a`. Test Plan: $ arc diff -a Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4903 --- src/workflow/ArcanistBaseWorkflow.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/workflow/ArcanistBaseWorkflow.php b/src/workflow/ArcanistBaseWorkflow.php index 72d5659e..1b3a96bc 100644 --- a/src/workflow/ArcanistBaseWorkflow.php +++ b/src/workflow/ArcanistBaseWorkflow.php @@ -771,15 +771,15 @@ abstract class ArcanistBaseWorkflow extends Phobject { echo phutil_console_wrap( "Since you don't have '.gitignore' rules for these files and have ". "not listed them in '.git/info/exclude', you may have forgotten ". - "to 'git add' them to your commit."); + "to 'git add' them to your commit.\n"); } else if ($api instanceof ArcanistSubversionAPI) { echo phutil_console_wrap( "Since you don't have 'svn:ignore' rules for these files, you may ". - "have forgotten to 'svn add' them."); + "have forgotten to 'svn add' them.\n"); } else if ($api instanceof ArcanistMercurialAPI) { echo phutil_console_wrap( "Since you don't have '.hgignore' rules for these files, you ". - "may have forgotten to 'hg add' them to your commit."); + "may have forgotten to 'hg add' them to your commit.\n"); } if ($this->askForAdd()) { @@ -821,7 +821,7 @@ abstract class ArcanistBaseWorkflow extends Phobject { echo "You have unstaged changes in this working copy.\n\n". $working_copy_desc. " Unstaged changes in working copy:\n". - " ".implode("\n ", $unstaged); + " ".implode("\n ", $unstaged)."\n"; if ($this->askForAdd()) { $api->addToCommit($unstaged); $must_commit += array_flip($unstaged); @@ -841,7 +841,7 @@ abstract class ArcanistBaseWorkflow extends Phobject { echo "You have uncommitted changes in this working copy.\n\n". $working_copy_desc. " Uncommitted changes in working copy:\n". - " ".implode("\n ", $uncommitted); + " ".implode("\n ", $uncommitted)."\n"; if ($this->askForAdd()) { $must_commit += array_flip($uncommitted); } else {