0


git 切换到指定tag

git查看tag命令:

git tag

git切换到tag

git checkout tag_name 

此时git可能会提示你当前处于“detached HEAD” 状态。因为tag相当于一个快照,不能修改它的代码。需要在tag代码基础上做修改,并创建一个分支

git checkout -b branch_name tag_name
标签: git github

本文转载自: https://blog.csdn.net/u011983700/article/details/128253829
版权归原作者 juelianhuayao 所有, 如有侵权,请联系我们删除。

“git 切换到指定tag”的评论:

还没有评论