FeatureCommand - evansde77/cirrus GitHub Wiki

Feature Command

The feature command is used to create and manage feature branches using the GitFlow Model

Commands

  1. new - Creates a new feature branch, optionally pushing the new branch upstream following a git-flow style workflow
  2. 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.
  3. pr - shorthand for pull-request
  4. 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