红联Linux门户
Linux帮助

git branch和git tag 请问怎么取得git打好的tag所对应的代码呢?

发布时间:2016-07-26 10:50:56来源:linux网站作者:皮熊
通常,是用git branch -av即可查看所有的branch和当前branch.
 
但版本中的分支已经合并过的。只留有master和个别版本时,我们又想获取中间的某个版本,怎么办呢,此时就要用git tag。
 
git tag 查看标签。
 
git checkout  -b  branch_name  tag_name  即可切换到相应的标签。
 
比如git checkout -b 2.4.11  2.4.11  切换到opencv2.4.11版本。
 
正常依据远程branch来切换的方法是:git checkout -b 2.4.11  origin/2.4.11
 
本文永久更新地址:http://www.linuxdiyf.com/linux/22719.html