Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 460 Bytes

RELEASING.md

File metadata and controls

21 lines (19 loc) · 460 Bytes

Releasing

Performing Release

  • Start release using the current date as the release version:
RELEASE_VERSION=YYYY-MM-DD
git flow release start $RELEASE_VERSION
  • Commit the changes:
git commit -m "Prepare release $RELEASE_VERSION" .
  • Finish the release:
git flow release finish $RELEASE_VERSION
  • Push changes, develop, master branches and tags to remote repository:
git push origin develop master --tags