mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-10 00:42:40 +01:00
Make "arc export" work from a local git repo
Summary: Test Plan: Reviewers: CC:
This commit is contained in:
parent
9affcb0db2
commit
100c55cf45
1 changed files with 14 additions and 6 deletions
|
@ -166,12 +166,20 @@ EOTEXT
|
|||
case self::SOURCE_LOCAL:
|
||||
$repository_api = $this->getRepositoryAPI();
|
||||
$parser = new ArcanistDiffParser();
|
||||
|
||||
// TODO: git support, paths support
|
||||
$paths = $repository_api->getWorkingCopyStatus();
|
||||
$changes = $parser->parseSubversionDiff(
|
||||
$repository_api,
|
||||
$paths);
|
||||
|
||||
if ($repository_api instanceof ArcanistGitAPI) {
|
||||
$this->parseGitRelativeCommit(
|
||||
$repository_api,
|
||||
$this->getArgument('paths'));
|
||||
$diff = $repository_api->getFullGitDiff();
|
||||
$changes = $parser->parseDiff($diff);
|
||||
} else {
|
||||
// TODO: paths support
|
||||
$paths = $repository_api->getWorkingCopyStatus();
|
||||
$changes = $parser->parseSubversionDiff(
|
||||
$repository_api,
|
||||
$paths);
|
||||
}
|
||||
|
||||
$bundle = ArcanistBundle::newFromChanges($changes);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue