赞
踩
假如我们本地已经有了一份Google repo仓库源代码,那么可以直接把这份代码转移到我们的新Gerrit服务器上面~
首先,通过repo创建仓库列表,进入到本地repo仓库目录下面:
repo forall -c "echo $REPO_PATH; ssh -p 29418 Gerrit服务器地址 gerrit create-project $REPO_PATH --parent ProjectBase;"
这样就通过repo把本地所有的仓库在新的Gerrit服务器上创建完毕。
然后推送本地代码到Gerrit服务器,记得推送之前在project base上面修改账户force push的权限:
repo forall -c "echo $REPO_PATH; git push Gerrit服务器地址/$REPO_PATH +refs/heads/* +refs/tags/*"
这样就可以快速的把本地repo仓库代码快速的推送到Gerrit服务器上面,和git仓库的迁移差不多,只是多了一个repo的操作
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。