Skip to content

Instantly share code, notes, and snippets.

@chsh
Created March 29, 2012 14:40
Show Gist options
  • Save chsh/2238054 to your computer and use it in GitHub Desktop.
Save chsh/2238054 to your computer and use it in GitHub Desktop.
Shorten git flow's release operations. ;-)
#!/bin/sh
prefix=''
d=`date +%Y%m%d%H%M%S`
git flow release start $prefix-$d
git flow release finish -m"Release:$d" $prefix-$d
@chsh
Copy link
Author

chsh commented Mar 29, 2012

Create 'git-release' in your any path.
That's it!

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