Skip to content

Instantly share code, notes, and snippets.

@foopis23
Created June 13, 2022 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save foopis23/31259386f505717cfeaa5d12d792544c to your computer and use it in GitHub Desktop.
Save foopis23/31259386f505717cfeaa5d12d792544c to your computer and use it in GitHub Desktop.
Checkout Latest Tag
# Get new tags from remote
git fetch --tags
# Get latest tag name
latestTag=$(git describe --tags `git rev-list --tags --max-count=1`)
# Checkout latest tag
git checkout $latestTag
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment