Skip to content

Instantly share code, notes, and snippets.

@chsh
Created October 16, 2014 10:12
Show Gist options
  • Select an option

  • Save chsh/a51e244c5811716e4c71 to your computer and use it in GitHub Desktop.

Select an option

Save chsh/a51e244c5811716e4c71 to your computer and use it in GitHub Desktop.
git release command for git-flow.
#!/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