
repo
文章平均质量分 50
hushui
Coding Since 1998
展开
-
using a local_manifest.xml with repo
cp your_local_mainifest.xml .repo/manifestsrepo init -m your_local_manifest.xmlrepo sync原创 2021-11-08 16:02:49 · 381 阅读 · 1 评论 -
Android repo branch/Partial-clone/--depth=1/--groups
repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.1_r1repo init -u https://android.googlesource.com/platform/manifest -b PQ3B.190705.003Code Name refer tohttps://source.android.com/setup/start/build-numbershttps://...原创 2021-01-17 07:44:50 · 676 阅读 · 0 评论 -
rsync/git/repo/android source of AOSP
lake@localhost:~/Google$ cat rsync-exclude-from.txt.repo.git/.gitignore /outlake@localhost:~/Google$rsync -r -l -t --exclude-from "rsync-exclude-from.txt" --delete --p...原创 2018-10-29 15:29:31 · 378 阅读 · 0 评论 -
RHEL/Android/Git/repo switch branch in AOSP source
lake@localhost:~/Google/android-8.1.0_r33$cd .repo/manifestslake@localhost:~/Google/android-8.1.0_r33/.repo/manifests$ git branch -a | grep android-8.1.0_r33 remotes/origin/android-8.1.0_r33la...原创 2018-10-25 13:28:38 · 455 阅读 · 0 评论 -
RHEL/Android/Git/repo loop
lake@localhost:~/Google/android-8.1.0_r33$ cat ~/git_repository/repo-repeat.sh#!/bin/bashrepo syncwhile [ $? -ne 0 ]do sleep 10 repo syncdone原创 2018-10-25 13:29:32 · 159 阅读 · 0 评论 -
repo sync -c your_folder_project
repo sync -c your_folder_project###--trace for detaillake@localhost:~/local/fmsng$ repo --trace sync -c xxx/xxx/launcher... A new repo command ( 1.23) is available.... You should upg...原创 2019-07-09 16:28:54 · 3970 阅读 · 0 评论 -
rsync .gitignore only
rsync -avm --include=".gitignore" --include='*/' --exclude='*' /source/ /target/Example for all rar fileslake@M5273296:/mnt/c/work/temp$ rsync -avm --include="*.rar" --inc...原创 2019-08-23 12:47:06 · 363 阅读 · 0 评论