Skip to content

Instantly share code, notes, and snippets.

@oreales
Last active December 9, 2015 18:54
Show Gist options
  • Save oreales/a5258e64f097aadcc149 to your computer and use it in GitHub Desktop.
Save oreales/a5258e64f097aadcc149 to your computer and use it in GitHub Desktop.
Git ordenar tags (2 formas)
#en versiones nuevas de git, usando el param --sort para tags
git tag --sort v:refname
#se puede añadir a configuracion global
git config --global tag.sort="v:refname"
#para versiones anteriores a la 1.8 que no tienen el --sort parameter
git tag -l | sort -V
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment