본문 바로가기

작업일지/coLinux

coLinux에서 오드로이드 git가 안될때...

vmware player에서 "repo init -u git://git.odroid.com/android/platform/manifest.git -b odroid-1.5r3"를 하면 자동으로 user등을 물어 보던데 coLinux에서 해보니 안물어 보고 사용자를 알수 없다며 git서버에 접근이 안되는거 같다.


혹 시 아래처럼 에러가 나오면 git설정을 다시 해줘야함.

error.GitError: manifests var:
*** Please tell me who you are


"Please tell me who you are"라고 하는것으로 보아 사용자 정보가 미흡한 모양이다.

아래처럼 사용자 정보를 설정해준다.

# git config --global user.name "name"

# git config --global user.email "mail@mail.com"

(namemail@mail.com는 아무거나....)



그리고 .repo를 삭제하고 다시 "repo init"을 수행한다.

# rm -r .repo

# repo init -u git://git.odroid.com/android/platform/manifest.git -b odroid-1.5r3




어떤 차이인지 모르겠지만 git서버에 접근할때 사용자 정보가 없으면 기본값을 제시하면서 사용자 정보를 물어 보던데 이번처럼 안물어보는 경우도 있는듯 함.


참고: http://homepage2.nifty.com/takaaki024/tips/programs/java/android.html