0

有没有办法将 gerrits 列表标记到标签...标记后,如果我对此标签进行 repo 同步,这些 gerrits 应该同步到工作区..有像 dat 这样的选项吗?有没有人这样做过?对此的任何建议都非常感谢。

Commands used to do repo sync

    $repo init -u git://git.SERVER.com/platform/manifest.git -b refs/tags/label -m versioned.xml #Eg to sync to a label
     <code snippet>

    $ repo sync # syncing the code
4

2 回答 2

1

创建标签:

repo forall -c "git tag -a -m \" [标签描述] \" [标签名] "

将标签推送到远程存储库:

repo forall -c "git push origin [tag-name]"

于 2013-04-09T07:39:51.963 回答
0

您可以简单地编辑您的 .repo/manifest.xml 修订以指向特定标签...添加默认修订作为标签名称。它只会同步到提供的标签..

于 2013-04-09T06:31:37.680 回答