Skip to content

Instantly share code, notes, and snippets.

@wsakaren
Created August 7, 2016 20:22
Show Gist options
  • Save wsakaren/c70aa7c168c3ce492fce9f258aed8a6c to your computer and use it in GitHub Desktop.
Save wsakaren/c70aa7c168c3ce492fce9f258aed8a6c to your computer and use it in GitHub Desktop.
Get latest git tag and increment version by 1
git tag --sort version:refname |tail -n1 | gawk -F"." '{$NF+=1}{print $0RT}' OFS="." ORS=""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment