Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/derhasi/drupal-org-issue-patch-history
Command line tool to generate branch of a project that contains the patch history of an issue (more or less).
https://github.com/derhasi/drupal-org-issue-patch-history
drupal
Last synced: about 1 month ago
JSON representation
Command line tool to generate branch of a project that contains the patch history of an issue (more or less).
- Host: GitHub
- URL: https://github.com/derhasi/drupal-org-issue-patch-history
- Owner: derhasi
- Created: 2017-09-09T19:34:32.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-10T17:27:47.000Z (over 7 years ago)
- Last Synced: 2024-11-07T15:13:12.079Z (3 months ago)
- Topics: drupal
- Language: PHP
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# drupal-org-issue-patch-history
Command line tool to generate branch of a project that contains the patch history of an issue (more or less).
## Installation
1. Clone this repository
2. `composer install`
3. Run './drupal-org-issue-patch-history` to see the help of the command line tool.## Usage
```
./drupal-org-issue-patch-history create-branch [] [] []
``````
Arguments:
project The drupal org project machine name.
issue The id of the issue to parse.
directory The directory of the repository to work with or to clone to. Defaults to project name.
sourceBranch Branch name to apply patches on [default: "8.x-1.x"]
targetBranch Branch name to create for the given issue. Defaults to issue-[issueID].Options:
-h, --help Display this help message
-q, --quiet Do not output any message
-V, --version Display this application version
--ansi Force ANSI output
--no-ansi Disable ANSI output
-n, --no-interaction Do not ask any interactive question
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debugHelp:
This command parses the issue history of a drupal.org issue and tries to build a representation of the patches within this history in a single branch.
```