mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-10 08:52:39 +01:00
Fix "arc branch" performance regression
Summary: See discussion in T1467. This `log` logs everything in the repo. The old command was `show -s`, I just unthinkingly converted it and it doesn't matter for non-Facebook-sized repositories. Test Plan: Ran "arc branch". Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T1467 Differential Revision: https://secure.phabricator.com/D2963
This commit is contained in:
parent
1ec2d1095b
commit
daa210022d
1 changed files with 5 additions and 1 deletions
|
@ -99,9 +99,13 @@ EOTEXT
|
|||
array $branches,
|
||||
ArcanistRepositoryAPI $repository_api) {
|
||||
|
||||
// NOTE: "-s" is an option deep in git's diff argument parser that doesn't
|
||||
// seem to have much documentation and has no long form. It suppresses any
|
||||
// diff output.
|
||||
|
||||
$commits = ipull($branches, 'hash');
|
||||
list($info) = $repository_api->execxLocal(
|
||||
'log --format=%C %Ls --',
|
||||
'show -s --format=%C %Ls',
|
||||
'%H%x01%ct%x01%T%x01%s%n%b%x02',
|
||||
$commits);
|
||||
|
||||
|
|
Loading…
Reference in a new issue