mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-02-22 11:39:03 +01:00
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
This commit is contained in:
parent
f32b6aa6c5
commit
8f0b0d379f
1 changed files with 5 additions and 5 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue