2012-06-25 21:35:37 +02:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
|
|
|
|
$root = dirname(dirname(dirname(__FILE__)));
|
|
|
|
require_once $root.'/scripts/__init_script__.php';
|
|
|
|
|
|
|
|
$args = new PhutilArgumentParser($argv);
|
|
|
|
$args->setTagline('manage repositories');
|
|
|
|
$args->setSynopsis(<<<EOSYNOPSIS
|
|
|
|
**repository** __command__ [__options__]
|
|
|
|
Manage and debug Phabricator repository configuration, tracking,
|
|
|
|
discovery and import.
|
|
|
|
|
|
|
|
EOSYNOPSIS
|
|
|
|
);
|
|
|
|
$args->parseStandardArguments();
|
|
|
|
|
|
|
|
$workflows = array(
|
|
|
|
new PhabricatorRepositoryManagementPullWorkflow(),
|
|
|
|
new PhabricatorRepositoryManagementDiscoverWorkflow(),
|
|
|
|
new PhabricatorRepositoryManagementListWorkflow(),
|
2012-10-26 01:23:41 +02:00
|
|
|
new PhabricatorRepositoryManagementDeleteWorkflow(),
|
2013-11-06 20:26:24 +01:00
|
|
|
new PhabricatorRepositoryManagementMarkImportedWorkflow(),
|
2012-06-25 21:35:37 +02:00
|
|
|
new PhutilHelpArgumentWorkflow(),
|
|
|
|
);
|
|
|
|
|
|
|
|
$args->parseWorkflows($workflows);
|