Skip to content

Instantly share code, notes, and snippets.

@chsh
Created August 7, 2012 03:36
Show Gist options
  • Save chsh/3281189 to your computer and use it in GitHub Desktop.
Save chsh/3281189 to your computer and use it in GitHub Desktop.
Simplify git flow release command.
#!/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