Skip to content

Instantly share code, notes, and snippets.

@derak-kilgo
Last active May 13, 2020 16:15
Show Gist options
  • Save derak-kilgo/e09c4c3fc78c81b3cf45000f20d16ea1 to your computer and use it in GitHub Desktop.
Save derak-kilgo/e09c4c3fc78c81b3cf45000f20d16ea1 to your computer and use it in GitHub Desktop.
List the 5 most recent tags in a remote git repo without cloning it.
#!/bin/bash
git ls-remote --tags --refs --sort="v:refname" git@github.com:sebastianbergmann/phpunit.git | tail -n5 | sed 's/.*\///'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment