From a73a4ec35a988da39b625dc3e9707d6c330eeb41 Mon Sep 17 00:00:00 2001 From: dqzg12300 Date: Mon, 8 May 2023 20:20:30 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=AC2=E7=AB=A0=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chapter-02/README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/chapter-02/README.md b/chapter-02/README.md index 8c3960e..745aec3 100644 --- a/chapter-02/README.md +++ b/chapter-02/README.md @@ -1260,7 +1260,17 @@ cd ~/android_src/myandroid12/ repo sync -j8 ``` -​ 到这里就完成了`gitlab`源码管理AOSP源码开发了。最后如何使用`git`提交和查看历史记录我就不在这里叙述了。 +​ 到这里就完成了`gitlab`源码管理AOSP源码开发了,当修改代码后,就可以使用`repo`来提交修改了。在根目录执行下面的命令提交修改代码。 + +``` +repo forall -c 'git add .' + +repo forall -c 'git commit -m "change my update" ' + +repo forall -c 'git push' +``` + +​ 在上面的命令中`repo forall -c`表示对清单中的所有`git`执行后面的命令。也可以选择直接在当前修改的`git`仓库中进行提交。 ### 2.9 小结