Skip to content

Instantly share code, notes, and snippets.

@chsh
Created March 22, 2014 03:48
Show Gist options
  • Save chsh/9700798 to your computer and use it in GitHub Desktop.
Save chsh/9700798 to your computer and use it in GitHub Desktop.
Shortcut git flow release process.
#!/bin/sh
pfx='rel'
d=`date +%Y%m%d%H%M%S`
git flow release start $pfx-$d
git flow release finish -m"Release:$d" $pfx-$d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment