我已经在本地建立了一个AOSP项目,并设法通过manifest.xml将AOSP中的一些模块替换为Github中我的私有repo。
然而,我对这里的repo upload
命令感到困惑,根据https://source.android.com/docs/setup/contribute/submit-patches#upload-to-gerrit,使用repo upload
Repo将提供https://android-review.googlesource.com/上新页面的URL。但我不想将我的更改暴露给这个网站,因为它们是Github中的私有repo。
我应该怎么做呢?我有没有其他方法来推送代码并自动请求审查?
1条答案
按热度按时间nmpmafwu1#
“repo upload”命令用于将更改发送到Gerrit代码评审系统。Github在评审方面与Gerrit不同。因此您不能使用repo upload将更改上传到GitHub。
你可以使用git命令把提交推送到Github,Github使用"Pull Request"到review changes,可以通过Github CLI来完成