Skip to content

Instantly share code, notes, and snippets.

@halidaltuner
Created October 29, 2019 10:14
Show Gist options
  • Save halidaltuner/2b0e558df789e5da0fee6202ad41dedb to your computer and use it in GitHub Desktop.
Save halidaltuner/2b0e558df789e5da0fee6202ad41dedb to your computer and use it in GitHub Desktop.
get git repository latest tag
git clone REPO_URL
cd REPO_DIR
git fetch --all --tags --prune
latestTag=$(git describe --tags `git rev-list --tags --max-count=1`)
git checkout $latestTag
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment