android 本地git服务器设置的整个AOSP存储库的标记

4zcjmb1e  于 2023-06-20  发布在  Android
关注(0)|答案(1)|浏览(145)

我通过以下步骤为本地git服务器设置了一个AOSP代码:

服务器镜像代码:

mkdir AOSP_镜像
cd AOSP_镜像
repo init -u https://android.googlesource.com/platform/manifest -B android-1.6_r1.2 --mirror
存储库同步
/* Git守护进程设置 */
git daemon --port=9418 --export-all --reuseaddr --base-path=.

客户端:

使用以下命令同步代码:
repo init -u git:///platform/manifest -B android-1.6_r1.2
回购同步-j16

我的要求是

1.我想为整个AOSP仓库项目创建一个git标签,请分享命令以及我需要从哪台机器(服务器或客户端)运行命令。

ep6jt1vc

ep6jt1vc1#

您可以使用repo forall -c命令在每个项目中实际运行命令。我认为这应该在服务器上完成。
参考:

  1. https://git-repo.info/en/docs/multi-repos/git-repo-forall/
  2. Keeping tags in target repository during git mirror

相关问题