git 相关

列出所有tags

git ls-remote --tags

 

进入远程tag

1  git fetch --all --tags --prune

git ls-remote --heads origin  //列出同时在branch中有名字的tag

git branch -r 

2 git checkout tags/

原文地址:https://www.cnblogs.com/anjunact/p/9079943.html