1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-21 22:32:41 +01:00

asukhachev's patch for 'arc amend' not being overeager.

This commit is contained in:
epriestley 2011-03-14 17:39:12 -07:00
parent 628de7d7a1
commit eb58ed1b8b

View file

@ -130,9 +130,15 @@ EOTEXT
$mark_workflow->run();
}
echo phutil_console_wrap(
"You may now push this commit upstream, as appropriate (e.g. with ".
"'git push', or 'git svn dcommit', or by printing and faxing it).\n");
$remote_message = ArcanistDifferentialCommitMessage::newFromRawCorpus(
$message);
$remote_message->pullDataFromConduit($conduit);
if ($remote_message->getFieldValue('reviewedByGUIDs') ||
$remote_message->getFieldValue('reviewedByPHIDs')) {
echo phutil_console_wrap(
"You may now push this commit upstream, as appropriate (e.g. with ".
"'git push', or 'git svn dcommit', or by printing and faxing it).\n");
}
}
return 0;