Changeset View
Changeset View
Standalone View
Standalone View
src/workflow/ArcanistExportWorkflow.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Exports changes from Differential or the working copy to a file. | * Exports changes from Differential or the working copy to a file. | ||||
| */ | */ | ||||
| final class ArcanistExportWorkflow extends ArcanistBaseWorkflow { | final class ArcanistExportWorkflow extends ArcanistWorkflow { | ||||
| const SOURCE_LOCAL = 'local'; | const SOURCE_LOCAL = 'local'; | ||||
| const SOURCE_DIFF = 'diff'; | const SOURCE_DIFF = 'diff'; | ||||
| const SOURCE_REVISION = 'revision'; | const SOURCE_REVISION = 'revision'; | ||||
| const FORMAT_GIT = 'git'; | const FORMAT_GIT = 'git'; | ||||
| const FORMAT_UNIFIED = 'unified'; | const FORMAT_UNIFIED = 'unified'; | ||||
| const FORMAT_BUNDLE = 'arcbundle'; | const FORMAT_BUNDLE = 'arcbundle'; | ||||
| ▲ Show 20 Lines • Show All 258 Lines • Show Last 20 Lines | |||||