Changeset View
Changeset View
Standalone View
Standalone View
src/workflow/ArcanistLandWorkflow.php
| Show First 20 Lines • Show All 112 Lines • ▼ Show 20 Lines | |||||
| now updated. For example, if you land "feature4", local branches "feature5" and | now updated. For example, if you land "feature4", local branches "feature5" and | ||||
| "feature6" may now be rebased on the published version of the change. | "feature6" may now be rebased on the published version of the change. | ||||
| Once everything has been pushed, cleanup occurs. Consulting mystical sources of | Once everything has been pushed, cleanup occurs. Consulting mystical sources of | ||||
| power, the workflow makes a guess about what state you wanted to end up in | power, the workflow makes a guess about what state you wanted to end up in | ||||
| after the process finishes. The working copy is put into that state. | after the process finishes. The working copy is put into that state. | ||||
| Any obsolete refs that point at commits which were published are deleted, | Any obsolete refs that point at commits which were published are deleted, | ||||
| unless the **--keep-branch** flag is passed. | unless the **--keep-branches** flag is passed. | ||||
| EOTEXT | EOTEXT | ||||
| ); | ); | ||||
| return $this->newWorkflowInformation() | return $this->newWorkflowInformation() | ||||
| ->setSynopsis(pht('Publish reviewed changes.')) | ->setSynopsis(pht('Publish reviewed changes.')) | ||||
| ->addExample(pht('**land** [__options__] -- [__ref__ ...]')) | ->addExample(pht('**land** [__options__] -- [__ref__ ...]')) | ||||
| ->setHelp($help); | ->setHelp($help); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 218 Lines • Show Last 20 Lines | |||||