git tag 查看标签列表、切换标签

1、查看标签列表

git tag

2、切换标签(需要指定分支 test 为分支、v0.17.7 为标签版本)

git checkout -b test v0.17.7

原文地址:https://www.cnblogs.com/yuzhoushenqi/p/9559139.html