Created
August 7, 2012 03:36
-
-
Save chsh/3281189 to your computer and use it in GitHub Desktop.
Simplify git flow release command.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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