从GoogleSource存储库中查看铬的特定发布代码

时间:2016-11-11 03:09:08

标签: chromium

我想知道,在将项目移动到新的repository之后,如何检查铬的特定发布代码。

查看此版本标签。 https://chromium.googlesource.com/chromium/src/+refs

我想知道如何获取特定标记的代码,例如55.0.2883.46 当我使用

sudo git checkout -b  "tags/55.0.2883.46" ;
gclient sync --jobs 16;

不能像我期望的那样工作

1 个答案:

答案 0 :(得分:0)

最后,解决方案是仅编写此行

sudo git checkout  "tags/55.0.2883.46"  -b "s55.0.2883.46" ;

s55.0.2883.46:新的本地分支名称