Gerrit仓库操作

创建项目
 

ssh -p 29418 [email protected] gerrit create-project --empty-commit "Test"

注意admin是gerrit管理员用户名,需要配置ssh-keygen -t ed255198 -C "[email protected]"

删除项目

   打开gerrit项目仓库,点击左侧Command->DELETE PROJECT,或者命令

ssh -p 29418 [email protected] deleteproject delete "Test" --yes-really-delete

查询所有项目

ssh -p 29418 [email protected] gerrit ls-projects --all

创建分支

ssh -p 29418 [email protected] gerrit create-branch Test newBranch oldBranch

批量创建AOSP项目

repo forall -c 'echo $REPO_PROJECT; ssh -p 29418 [email protected] gerrit create-project --owner android-admin $REPO_PROJECT;'

你可能感兴趣的:(java)