From 4ad2a22732e126105c9d1eead4af8d6cce8f428c Mon Sep 17 00:00:00 2001 From: "ithink.chan" Date: Wed, 8 Jan 2020 16:56:41 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=E5=AF=B9=20REPO=5FURL=20?= =?UTF-8?q?=E7=9A=84=E4=BF=AE=E6=94=B9.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ithink.chan --- Software/Applications/Repo/Repo_使用.md | 42 +++++++++++++++++++------ 1 file changed, 32 insertions(+), 10 deletions(-) diff --git a/Software/Applications/Repo/Repo_使用.md b/Software/Applications/Repo/Repo_使用.md index 8e304f1..2cd97ad 100644 --- a/Software/Applications/Repo/Repo_使用.md +++ b/Software/Applications/Repo/Repo_使用.md @@ -1,34 +1,56 @@ # Repo 使用 +先 + +```sh +vim /usr/bin/repo +``` + +将 REPO_URL 修改为 ''。 + ## 创建并切换分支 - repo start <新分支名> --all +```sh +repo start <新分支名> --all +``` ## 查看分支 - repo branches +```sh +repo branches +``` ## 切换分支 - repo checkout <远程分支名> +```sh +repo checkout <远程分支名> +``` ## 提交代码 - git commit -asm +```sh +git commit -asm +``` ## Push 代码 - git push <远程主机名> <本地分支名>:refs/for/<远程分支名> - git push <远程主机名> <本地分支名>:refs/drafts/<远程分支名> +```sh +git push <远程主机名> <本地分支名>:refs/for/<远程分支名> +git push <远程主机名> <本地分支名>:refs/drafts/<远程分支名> +``` ## Gerrit 服务器 Android 使用 ACRN: - repo init -u ssh://cheny@10.20.0.34:29418/manifests -b oa/gordon_peak_acrn/a90/rel -m manifest-AAH.xml - repo sync -j<线程数> +```sh +repo init -u ssh://cheny@10.20.0.34:29418/manifests -b oa/gordon_peak_acrn/a90/rel -m manifest-AAH.xml +repo sync -j<线程数> +``` Nitc: - repo init -u ssh://chensf@10.20.3.17:29418/manifests -b nitc - repo sync -j<线程数> +```sh +repo init -u ssh://chensf@10.20.3.17:29418/manifests -b nitc +repo sync -j<线程数> +```