On Fri, Mar 23, 2012 at 16:44, Antoine Musso hashar+wmf@free.fr wrote:
March 23 2012 18:30, Chad wrote:
`git branch -r` will show you all of the remote branches.
To checkout the 1.18 branch, you'd then do `git checkout origin/REL1_18`
One can get a list of tag with `git tag -l`
Sorted with `git tag -l | sort -n -t. -k1 -k2 -k3`
better ordering: `git tag -l | sort -V`