mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-25 16:22:42 +01:00
Fix ambiguous argument where a branch has the same name as a file
Summary: Currently, if you have a branch named "docs" and a local file named "docs", `git show -s docs` complains because it's ambiguous. Use `--` to unambiguously mark branches as revisions, not files. Test Plan: Ran `arc branch` in a working copy with a "docs" branch and a "docs" file, got expected results. Reviewers: vrana, btrahan Reviewed By: vrana CC: aran Differential Revision: https://secure.phabricator.com/D3030
This commit is contained in:
parent
1e8add9583
commit
d2f0ffac7d
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ EOTEXT
|
|||
// seem to have much documentation and has no long form. It suppresses any
|
||||
// diff output.
|
||||
$futures[$branch['name']] = $repository_api->execFutureLocal(
|
||||
'show -s --format=%C %s',
|
||||
'show -s --format=%C %s --',
|
||||
'%H%x01%ct%x01%T%x01%s%x01%b',
|
||||
$branch['name']);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue