├── .gitignore ├── Application.php ├── Command ├── Apply.php ├── Cleanup.php ├── CommandBase.php ├── CreatePatch.php ├── Diff.php ├── LocalSetup.php ├── LocalUpdate.php ├── OpenIssue.php ├── Purge.php ├── Status.php └── SwitchMaster.php ├── Console ├── DefinitionList.php ├── ItemList.php └── ListBase.php ├── DependencyInjection └── ContainerAwareTrait.php ├── README.md ├── Service ├── Analyser.php ├── CommitMessageHandler.php ├── DrupalOrg.php ├── GitExecutor.php ├── GitInfo.php ├── GitLog.php ├── UserInput.php ├── WaypointManagerBranches.php └── WaypointManagerPatches.php ├── Testing └── repository │ ├── main.txt │ ├── patch-b.patch │ └── patch-c.patch ├── Waypoint ├── FeatureBranch.php ├── LocalPatch.php ├── MasterBranch.php └── Patch.php ├── composer.json ├── dorgflow ├── services.php └── tests ├── CommandCreatePatchTest.php ├── CommandLocalSetupTest.php ├── CommandLocalUpdateTest.php ├── CommandLocalUpdateUnitTest.php ├── CommandTestBase.php ├── CommitMessageHandlerTest.php ├── FeatureBranchTest.php ├── GitHandlerFileCheckout.php └── SetUpPatchesTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Application.php -------------------------------------------------------------------------------- /Command/Apply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Command/Apply.php -------------------------------------------------------------------------------- /Command/Cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Command/Cleanup.php -------------------------------------------------------------------------------- /Command/CommandBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Command/CommandBase.php -------------------------------------------------------------------------------- /Command/CreatePatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Command/CreatePatch.php -------------------------------------------------------------------------------- /Command/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Command/Diff.php -------------------------------------------------------------------------------- /Command/LocalSetup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Command/LocalSetup.php -------------------------------------------------------------------------------- /Command/LocalUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Command/LocalUpdate.php -------------------------------------------------------------------------------- /Command/OpenIssue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Command/OpenIssue.php -------------------------------------------------------------------------------- /Command/Purge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Command/Purge.php -------------------------------------------------------------------------------- /Command/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Command/Status.php -------------------------------------------------------------------------------- /Command/SwitchMaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Command/SwitchMaster.php -------------------------------------------------------------------------------- /Console/DefinitionList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Console/DefinitionList.php -------------------------------------------------------------------------------- /Console/ItemList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Console/ItemList.php -------------------------------------------------------------------------------- /Console/ListBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Console/ListBase.php -------------------------------------------------------------------------------- /DependencyInjection/ContainerAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/DependencyInjection/ContainerAwareTrait.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/README.md -------------------------------------------------------------------------------- /Service/Analyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Service/Analyser.php -------------------------------------------------------------------------------- /Service/CommitMessageHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Service/CommitMessageHandler.php -------------------------------------------------------------------------------- /Service/DrupalOrg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Service/DrupalOrg.php -------------------------------------------------------------------------------- /Service/GitExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Service/GitExecutor.php -------------------------------------------------------------------------------- /Service/GitInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Service/GitInfo.php -------------------------------------------------------------------------------- /Service/GitLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Service/GitLog.php -------------------------------------------------------------------------------- /Service/UserInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Service/UserInput.php -------------------------------------------------------------------------------- /Service/WaypointManagerBranches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Service/WaypointManagerBranches.php -------------------------------------------------------------------------------- /Service/WaypointManagerPatches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Service/WaypointManagerPatches.php -------------------------------------------------------------------------------- /Testing/repository/main.txt: -------------------------------------------------------------------------------- 1 | Arthur the aardvark 2 | -------------------------------------------------------------------------------- /Testing/repository/patch-b.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Testing/repository/patch-b.patch -------------------------------------------------------------------------------- /Testing/repository/patch-c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Testing/repository/patch-c.patch -------------------------------------------------------------------------------- /Waypoint/FeatureBranch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Waypoint/FeatureBranch.php -------------------------------------------------------------------------------- /Waypoint/LocalPatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Waypoint/LocalPatch.php -------------------------------------------------------------------------------- /Waypoint/MasterBranch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Waypoint/MasterBranch.php -------------------------------------------------------------------------------- /Waypoint/Patch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/Waypoint/Patch.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/composer.json -------------------------------------------------------------------------------- /dorgflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/dorgflow -------------------------------------------------------------------------------- /services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/services.php -------------------------------------------------------------------------------- /tests/CommandCreatePatchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/tests/CommandCreatePatchTest.php -------------------------------------------------------------------------------- /tests/CommandLocalSetupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/tests/CommandLocalSetupTest.php -------------------------------------------------------------------------------- /tests/CommandLocalUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/tests/CommandLocalUpdateTest.php -------------------------------------------------------------------------------- /tests/CommandLocalUpdateUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/tests/CommandLocalUpdateUnitTest.php -------------------------------------------------------------------------------- /tests/CommandTestBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/tests/CommandTestBase.php -------------------------------------------------------------------------------- /tests/CommitMessageHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/tests/CommitMessageHandlerTest.php -------------------------------------------------------------------------------- /tests/FeatureBranchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/tests/FeatureBranchTest.php -------------------------------------------------------------------------------- /tests/GitHandlerFileCheckout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/tests/GitHandlerFileCheckout.php -------------------------------------------------------------------------------- /tests/SetUpPatchesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joachim-n/dorgflow/HEAD/tests/SetUpPatchesTest.php --------------------------------------------------------------------------------