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();
|
|
|
|
|
2013-12-27 22:15:48 +01:00
|
|
|
$workflows = id(new PhutilSymbolLoader())
|
|
|
|
->setAncestorClass('PhabricatorRepositoryManagementWorkflow')
|
|
|
|
->loadObjects();
|
|
|
|
$workflows[] = new PhutilHelpArgumentWorkflow();
|
2012-06-25 21:35:37 +02:00
|
|
|
$args->parseWorkflows($workflows);
|