在AOSP repo中添加新的git

时间:2017-09-21 09:06:36

标签: android git android-source repo

我在mydevice/下创建了一个新设备$AOSP_ROOT/device/。我正在尝试将git添加到$AOSP_ROOT/.repo以进行本地跟踪,如果我在执行repo statusrepo diff时看到更改,我发现它非常有用。这些是我尝试的步骤:

  1. git init文件夹中执行mydevice,保留未提交的更改
  2. 将项目添加到$AOSP_ROOT/.repo/manifest.xml
  3. 不幸的是,当我执行repo status时,我的项目没有反映在输出中。我做错了什么?

1 个答案:

答案 0 :(得分:2)

我们说$HOME/home/consy/$AOSP_ROOT/home/consy/aosp/

#init a local bare repo as the remote repo of `mydevice`
cd $AOSP_ROOT/device/
git init mydevice
git commit --allow-empty -m 'init repository'
cd $HOME
git clone $AOSP_ROOT/device --bare -- mydevice.git
cd $AOSP_ROOT/device
rm -rf mydevice

#create .repo/local_manifests (this is a feature of repo)
mkdir -p $AOSP_ROOT/.repo/local_manifests

#create a manifest under `local_manifests`.
#You can name it whatever you like except that the manifest's content should be like:
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
  <remote fetch="file:///home/consy/" name="this"/>
  <default remote="this" revision="master"/>
  <project name="mydevice" path="device/mydevice"/>
</manifest>

现在,当您运行repo sync时,本地清单中定义的项目将作为额外项目添加到$AOSP_ROOT中。您可以使用repo status之类的repo命令来操作这些额外的项目。存储库将从/home/consy/mydevice.git克隆并签出到$AOSP_ROOT/device/mydevice。在$AOSP_ROOT/device/mydevice下进行新的提交后,您可以运行git push this <ref>:<ref>将提交上传到/home/consy/mydevice.git。之后,当您认为它已准备好将这个新存储库发布到像Github或您自己的Gerrit这样的真实主机时,您可以添加一个指向Github或Gerrit的新远程控制器并推送它。然后将项目定义<project name="mydevice" path="device/mydevice"/>添加到repo init时使用的主清单中,提交更改并推送到远程清单存储库。之后,您可以删除$AOSP_ROOT/.repo/local_manifests下的本地清单,以避免重复项目错误。

关于本地清单功能,请参阅https://gerrit.googlesource.com/git-repo/+/master/docs/manifest-format.txt上的 Local Manifests