Software_Platform/Android
[CVS] repo 특정 git 만 sync 하기
반응형
Android 소스 코드는 여러 git을 하나의 repo로 가져온다.
그런데, 이 git 들중 특정 git만 선별해서 repo sync 하고 싶은 경우가 있다.
이 때 다음과 같이 수행한다.
1. selective git acquisition
1) repo init
repo init -u https://android.googlesource.com/a/platform/manifest
2) frameworks/av git만 가져오기
repo sync platform/frameworks/av -c -j4
2. selective git push
repo upload 대신 git push를 사용하는 방법
> vi .git/config
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = ssh://localhost:12345/android/vendor/com/apps/AlarmClock.git
push = HEAD:refs/for/repository_master <== 추가
반응형
'Software_Platform > Android' 카테고리의 다른 글
start app at adb with intent (0) | 2015.10.02 |
---|---|
Android partial compile (service만 build) framework base만 build (0) | 2015.05.31 |
Android Lollipop 5.1.0_r3 코드 size (안드로이드 코드 사이즈) (0) | 2015.04.03 |
Android source download (안드로이드 소스 다운로드) (0) | 2015.04.01 |
Nexus5 Lollipop 5.1 rooting (0) | 2015.03.24 |
댓글