Skip to content

Instantly share code, notes, and snippets.

@b-ggs
Last active August 29, 2017 14:28
Show Gist options
  • Save b-ggs/8778ef5894ea58769b0f3e59c5707c51 to your computer and use it in GitHub Desktop.
Save b-ggs/8778ef5894ea58769b0f3e59c5707c51 to your computer and use it in GitHub Desktop.
dpapa release start -v 0.0.1
dpapa release add -v 0.0.1 -b feature/1-add-butterfree-gem feature/2-add-beedrill-gem
dpapa release finish -v 0.0.1
dpapa release patch -v 0.0.1 -b patch/0.0.1/3-add-pidgey-gem
dpapa hotfix start -v 0.0.2
dpapa hotfix add -v 0.0.2 -b bugfix/4-fix-charmeleon-spelling bugfix/5-fix-gem-source
dpapa hotfix finish -v 0.0.2
dpapa hotfix merge -v 0.0.2 -b release/0.0.1
dpapa release merge -v 0.0.1
@b-ggs
Copy link
Author

b-ggs commented Aug 25, 2017

 dind_flow release start -v 0.0.1 # Start a new release branch
 dind_flow release add -v 0.0.1 -b feature/1-add-butterfree-gem feature/2-add-beedrill-gem # Add two feature branches to current release
 dind_flow release finish -v 0.0.1 # Push release branch to origin (not yet merged with master or develop)
 dind_flow release patch -v 0.0.1 -b patch/0.0.1/3-add-pidgey-gem # Add and merge patch for current release
 dind_flow hotfix start -v 0.0.2 # Start a new hotfix branch
 dind_flow hotfix add -v 0.0.2 -b bugfix/4-fix-charmeleon-spelling bugfix/5-fix-gem-source # Add two bugfix branches to current hotfix
 dind_flow hotfix finish -v 0.0.2 # Push hotfix branch to origin (not yet merged with master, develop, or current release)
 dind_flow hotfix merge -v 0.0.2 -b release/0.0.1 # Merge hotfix branch to master, develop, and current release
 dind_flow release merge -v 0.0.1 # Merge release branch to master and develop

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment