mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-12-23 14:00:55 +01:00
Make --revision switch of amend workflow easier to use
Summary: --revision doesn't allow the revision to be prefixed with 'D'. Also the error message showed when specified revision doesn't exist is hard to understand. Test Plan: Used `arc amend --revision D123`, tried it without 'D' and with a non existing revision. Reviewers: epriestley Reviewed By: epriestley CC: aran, epriestley Differential Revision: 1193
This commit is contained in:
parent
b5a104765a
commit
3abebbebfd
1 changed files with 18 additions and 7 deletions
|
@ -90,7 +90,7 @@ EOTEXT
|
|||
}
|
||||
|
||||
if ($this->getArgument('revision')) {
|
||||
$revision_id = $this->getArgument('revision');
|
||||
$revision_id = $this->normalizeRevisionID($this->getArgument('revision'));
|
||||
} else {
|
||||
$log = $repository_api->getGitCommitLog();
|
||||
$parser = new ArcanistDiffParser();
|
||||
|
@ -117,12 +117,23 @@ EOTEXT
|
|||
// revision in it. Maybe this is worth restoring?
|
||||
|
||||
$conduit = $this->getConduit();
|
||||
$message = $conduit->callMethodSynchronous(
|
||||
'differential.getcommitmessage',
|
||||
array(
|
||||
'revision_id' => $revision_id,
|
||||
'edit' => false,
|
||||
));
|
||||
try {
|
||||
$message = $conduit->callMethodSynchronous(
|
||||
'differential.getcommitmessage',
|
||||
array(
|
||||
'revision_id' => $revision_id,
|
||||
'edit' => false,
|
||||
)
|
||||
);
|
||||
} catch (ConduitClientException $ex) {
|
||||
if (strpos($ex->getMessage(), 'ERR_NOT_FOUND') === false) {
|
||||
throw $ex;
|
||||
} else {
|
||||
throw new ArcanistUsageException(
|
||||
"Revision D{$revision_id} does not exist."
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if ($is_show) {
|
||||
echo $message."\n";
|
||||
|
|
Loading…
Reference in a new issue