Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15443928
D18108.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
6 KB
Referenced Files
None
Subscribers
None
D18108.id.diff
View Options
diff --git a/src/configuration/ArcanistSettings.php b/src/configuration/ArcanistSettings.php
--- a/src/configuration/ArcanistSettings.php
+++ b/src/configuration/ArcanistSettings.php
@@ -80,13 +80,6 @@
'arc land'),
'example' => '"develop"',
),
- 'arc.land.update.default' => array(
- 'type' => 'string',
- 'help' => pht(
- 'The default strategy to use when arc land updates the feature '.
- 'branch. Supports "rebase" and "merge" strategies.'),
- 'example' => '"rebase"',
- ),
'arc.lint.cache' => array(
'type' => 'bool',
'help' => pht(
diff --git a/src/workflow/ArcanistLandWorkflow.php b/src/workflow/ArcanistLandWorkflow.php
--- a/src/workflow/ArcanistLandWorkflow.php
+++ b/src/workflow/ArcanistLandWorkflow.php
@@ -17,7 +17,6 @@
private $remote;
private $useSquash;
private $keepBranch;
- private $shouldUpdateWithRebase;
private $branchType;
private $ontoType;
private $preview;
@@ -197,43 +196,8 @@
'conflicts' => array(
'keep-branch' => true,
),
- ),
- 'update-with-rebase' => array(
- 'help' => pht(
- "When updating the feature branch, use rebase instead of merge. ".
- "This might make things work better in some cases. Set ".
- "%s to '%s' to make this the default.",
- 'arc.land.update.default',
- 'rebase'),
- 'conflicts' => array(
- 'merge' => pht(
- 'The %s strategy does not update the feature branch.',
- '--merge'),
- 'update-with-merge' => pht(
- 'Cannot be used with %s.',
- '--update-with-merge'),
- ),
'supports' => array(
- 'git',
- ),
- ),
- 'update-with-merge' => array(
- 'help' => pht(
- "When updating the feature branch, use merge instead of rebase. ".
- "This is the default behavior. Setting %s to '%s' can also be ".
- "used to make this the default.",
- 'arc.land.update.default',
- 'merge'),
- 'conflicts' => array(
- 'merge' => pht(
- 'The %s strategy does not update the feature branch.',
- '--merge'),
- 'update-with-rebase' => pht(
- 'Cannot be used with %s.',
- '--update-with-rebase'),
- ),
- 'supports' => array(
- 'git',
+ 'hg',
),
),
'revision' => array(
@@ -261,22 +225,6 @@
if ($engine) {
$this->readEngineArguments();
-
- $obsolete = array(
- 'delete-remote',
- 'update-with-merge',
- 'update-with-rebase',
- );
-
- foreach ($obsolete as $flag) {
- if ($this->getArgument($flag)) {
- throw new ArcanistUsageException(
- pht(
- 'Flag "%s" is no longer supported under Git.',
- '--'.$flag));
- }
- }
-
$this->requireCleanWorkingCopy();
$should_hold = $this->getArgument('hold');
@@ -514,14 +462,6 @@
$this->branch = head($branch);
$this->keepBranch = $this->getArgument('keep-branch');
- $update_strategy = $this->getConfigFromAnySource('arc.land.update.default');
- $this->shouldUpdateWithRebase = $update_strategy == 'rebase';
- if ($this->getArgument('update-with-rebase')) {
- $this->shouldUpdateWithRebase = true;
- } else if ($this->getArgument('update-with-merge')) {
- $this->shouldUpdateWithRebase = false;
- }
-
$this->preview = $this->getArgument('preview');
if (!$this->branchType) {
@@ -951,42 +891,7 @@
$repository_api = $this->getRepositoryAPI();
chdir($repository_api->getPath());
- if ($this->isGit) {
- if ($this->shouldUpdateWithRebase) {
- echo phutil_console_format(pht(
- 'Rebasing **%s** onto **%s**',
- $this->branch,
- $this->onto)."\n");
- $err = phutil_passthru('git rebase %s', $this->onto);
- if ($err) {
- throw new ArcanistUsageException(pht(
- "'%s' failed. You can abort with '%s', or resolve conflicts ".
- "and use '%s' to continue forward. After resolving the rebase, ".
- "run '%s' again.",
- sprintf('git rebase %s', $this->onto),
- 'git rebase --abort',
- 'git rebase --continue',
- 'arc land'));
- }
- } else {
- echo phutil_console_format(pht(
- 'Merging **%s** into **%s**',
- $this->branch,
- $this->onto)."\n");
- $err = phutil_passthru(
- 'git merge --no-stat %s -m %s',
- $this->onto,
- pht("Automatic merge by '%s'", 'arc land'));
- if ($err) {
- throw new ArcanistUsageException(pht(
- "'%s' failed. To continue: resolve the conflicts, commit ".
- "the changes, then run '%s' again. To abort: run '%s'.",
- sprintf('git merge %s', $this->onto),
- 'arc land',
- 'git merge --abort'));
- }
- }
- } else if ($this->isHg) {
+ if ($this->isHg) {
$onto_tip = $repository_api->getCanonicalRevisionName($this->onto);
$common_ancestor = $repository_api->getCanonicalRevisionName(
hgsprintf('ancestor(%s, %s)', $this->onto, $this->branch));
@@ -1367,31 +1272,7 @@
}
if ($this->getArgument('delete-remote')) {
- if ($this->isGit) {
- list($err, $ref) = $repository_api->execManualLocal(
- 'rev-parse --verify %s/%s',
- $this->remote,
- $this->branch);
-
- if ($err) {
- echo pht(
- 'No remote feature %s to clean up.',
- $this->branchType);
- echo "\n";
- } else {
-
- // NOTE: In Git, you delete a remote branch by pushing it with a
- // colon in front of its name:
- //
- // git push <remote> :<branch>
-
- echo pht('Cleaning up remote feature %s...', $this->branchType), "\n";
- $repository_api->execxLocal(
- 'push %s :%s',
- $this->remote,
- $this->branch);
- }
- } else if ($this->isHg) {
+ if ($this->isHg) {
// named branches were closed as part of the earlier commit
// so only worry about bookmarks
if ($repository_api->isBookmark($this->branch)) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Mar 28, 6:56 AM (3 d, 17 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7596764
Default Alt Text
D18108.id.diff (6 KB)
Attached To
Mode
D18108: Remove obsolete "arc land" flags: --update-with-merge/rebase, --delete-remote
Attached
Detach File
Event Timeline
Log In to Comment