array( 'param' => 'master', 'help' => "Land feature branch onto a branch other than ". "'master' (default). You can change the default by setting ". "'arc.land.onto.default' in your .arcconfig.", ), 'hold' => array( 'help' => "Prepare the change to be pushed, but do not actually ". "push it.", ), 'keep-branch' => array( 'help' => "Keep the feature branch after pushing changes to the ". "remote (by default, it is deleted).", ), 'remote' => array( 'param' => 'origin', 'help' => "Push to a remote other than 'origin' (default).", ), 'merge' => array( 'help' => 'Perform a --no-ff merge, not a --squash merge. If the '. 'project is marked as having an immutable history, this is '. 'the default behavior.', ), 'squash' => array( 'help' => 'Perform a --squash merge, not a --no-ff merge. If the '. 'project is marked as having a mutable history, this is '. 'the default behavior.', 'conflicts' => array( 'merge' => '--merge and --squash are conflicting merge strategies.', ), ), 'delete-remote' => array( 'help' => 'Delete the feature branch in the remote after '. 'landing it.', 'conflicts' => array( 'keep-branch' => true, ), ), 'revision' => array( 'param' => 'id', 'help' => 'Use the message from a specific revision, rather than '. 'inferring the revision based on branch content.', ), '*' => 'branch', ); } public function run() { $repository_api = $this->getRepositoryAPI(); if (!($repository_api instanceof ArcanistGitAPI)) { throw new ArcanistUsageException("'arc land' only supports git."); } $branch = $this->getArgument('branch'); if (empty($branch)) { $branch = $repository_api->getBranchName(); if ($branch) { echo "Landing current branch '{$branch}'.\n"; $branch = array($branch); } } if (count($branch) !== 1) { throw new ArcanistUsageException( "Specify exactly one branch to land changes from."); } $branch = head($branch); $onto_default = nonempty( $this->getWorkingCopy()->getConfig('arc.land.onto.default'), 'master'); $remote = $this->getArgument('remote', 'origin'); $onto = $this->getArgument('onto', $onto_default); if ($onto == $branch) { throw new ArcanistUsageException( "You can not land a branch onto itself -- you are trying to land ". "'{$branch}' onto '{$onto}'. For more information on how to push ". "changes, see 'Pushing and Closing Revisions' in ". "'Arcanist User Guide: arc diff' in the documentation."); } if ($this->getArgument('merge')) { $use_squash = false; } else if ($this->getArgument('squash')) { $use_squash = true; } else { $use_squash = !$this->isHistoryImmutable(); } list($err) = $repository_api->execManualLocal( 'rev-parse --verify %s', $branch); if ($err) { throw new ArcanistUsageException("Branch '{$branch}' does not exist."); } $this->requireCleanWorkingCopy(); $repository_api->parseRelativeLocalCommit(array($remote.'/'.$onto)); $old_branch = $repository_api->getBranchName(); $repository_api->execxLocal('checkout %s', $onto); echo phutil_console_format( "Switched to branch **%s**. Updating branch...\n", $onto); $repository_api->execxLocal('pull --ff-only'); list($out) = $repository_api->execxLocal( 'log %s/%s..%s', $remote, $onto, $onto); if (strlen(trim($out))) { throw new ArcanistUsageException( "Local branch '{$onto}' is ahead of '{$remote}/{$onto}', so landing ". "a feature branch would push additional changes. Push or reset the ". "changes in '{$onto}' before running 'arc land'."); } $repository_api->execxLocal( 'checkout %s', $branch); echo phutil_console_format( "Switched to branch **%s**. Identifying and merging...\n", $branch); if ($use_squash) { chdir($repository_api->getPath()); $err = phutil_passthru('git rebase %s', $onto); if ($err) { throw new ArcanistUsageException( "'git rebase {$onto}' failed. You can abort with 'git rebase ". "--abort', or resolve conflicts and use 'git rebase --continue' to ". "continue forward. After resolving the rebase, run 'arc land' ". "again."); } // Now that we've rebased, the merge-base of origin/master and HEAD may // be different. Reparse the relative commit. $repository_api->parseRelativeLocalCommit(array($remote.'/'.$onto)); } $revision_id = $this->getArgument('revision'); if ($revision_id) { $revision_id = $this->normalizeRevisionID($revision_id); $revisions = $this->getConduit()->callMethodSynchronous( 'differential.query', array( 'ids' => array($revision_id), )); if (!$revisions) { throw new ArcanistUsageException("No such revision 'D{$revision_id}'!"); } } else { $revisions = $repository_api->loadWorkingCopyDifferentialRevisions( $this->getConduit(), array( 'authors' => array($this->getUserPHID()), )); } if (!count($revisions)) { throw new ArcanistUsageException( "arc can not identify which revision exists on branch '{$branch}'. ". "Update the revision with recent changes to synchronize the branch ". "name and hashes, or use 'arc amend' to amend the commit message at ". "HEAD, or use '--revision ' to select a revision explicitly."); } else if (count($revisions) > 1) { $message = "There are multiple revisions on feature branch '{$branch}' which are ". "not present on '{$onto}':\n\n". $this->renderRevisionList($revisions)."\n". "Separate these revisions onto different branches, or use ". "'--revision ' to select one."; throw new ArcanistUsageException($message); } $revision = head($revisions); $rev_id = $revision['id']; $rev_title = $revision['title']; if ($revision['status'] != ArcanistDifferentialRevisionStatus::ACCEPTED) { $ok = phutil_console_confirm( "Revision 'D{$rev_id}: {$rev_title}' has not been accepted. Continue ". "anyway?"); if (!$ok) { throw new ArcanistUserAbortException(); } } echo "Landing revision 'D{$rev_id}: {$rev_title}'...\n"; $message = $this->getConduit()->callMethodSynchronous( 'differential.getcommitmessage', array( 'revision_id' => $revision['id'], )); $repository_api->execxLocal('checkout %s', $onto); if (!$use_squash) { // In immutable histories, do a --no-ff merge to force a merge commit with // the right message. chdir($repository_api->getPath()); $err = phutil_passthru( 'git merge --no-ff --no-commit %s', $branch); if ($err) { throw new ArcanistUsageException( "'git merge' failed. Your working copy has been left in a partially ". "merged state. You can: abort with 'git merge --abort'; or follow ". "the instructions to complete the merge."); } } else { // In mutable histories, do a --squash merge. $repository_api->execxLocal( 'merge --squash --ff-only %s', $branch); } $tmp_file = new TempFile(); Filesystem::writeFile($tmp_file, $message); $repository_api->execxLocal( 'commit -F %s', $tmp_file); if ($this->getArgument('hold')) { echo phutil_console_format( "Holding change in **%s**: it has NOT been pushed yet.\n", $onto); } else { echo "Pushing change...\n\n"; chdir($repository_api->getPath()); $err = phutil_passthru( 'git push %s %s', $remote, $onto); if ($err) { throw new ArcanistUsageException("'git push' failed."); } $mark_workflow = $this->buildChildWorkflow( 'close-revision', array( '--finalize', '--quiet', $revision['id'], )); $mark_workflow->run(); echo "\n"; } if (!$this->getArgument('keep-branch')) { list($ref) = $repository_api->execxLocal( 'rev-parse --verify %s', $branch); $ref = trim($ref); $recovery_command = csprintf( 'git checkout -b %s %s', $branch, $ref); echo "Cleaning up feature branch...\n"; echo "(Use `{$recovery_command}` if you want it back.)\n"; $repository_api->execxLocal( 'branch -D %s', $branch); if ($this->getArgument('delete-remote')) { list($err, $ref) = $repository_api->execManualLocal( 'rev-parse --verify %s/%s', $remote, $branch); if ($err) { echo "No remote feature branch to clean up.\n"; } else { // NOTE: In Git, you delete a remote branch by pushing it with a // colon in front of its name: // // git push : echo "Cleaning up remote feature branch...\n"; $repository_api->execxLocal( 'push %s :%s', $remote, $branch); } } } // If we were on some branch A and the user ran "arc land B", switch back // to A. if (($old_branch != $branch) && ($old_branch != $onto)) { $repository_api->execxLocal( 'checkout %s', $old_branch); echo phutil_console_format( "Switched back to branch **%s**.\n", $old_branch); } echo "Done.\n"; return 0; } protected function getSupportedRevisionControlSystems() { return array('git'); } }