FeatureCommand - evansde77/cirrus GitHub Wiki
Feature Command
The feature command is used to create and manage feature branches using the GitFlow Model
Commands
- new - Creates a new feature branch, optionally pushing the new branch upstream following a git-flow style workflow
- pull-request - Creates a new Pull Request in github requesting to merge the current feature branch with the develop branch, specifying the title, body and list of people to tag in the PR.
- pr - shorthand for pull-request
- list - lists all open unmerged feature branches in the repo
Usage:
git cirrus feature new BRANCH_NAME --push
git cirrus feature pull-request --title TITLE --body BODY --notify @AGITHUBUSER,@ANOTHERGITHUBUSER