Repo 설치 및 설정

old/Git 2011. 1. 14. 19:19

 

Public key 생성

$ ssh-keygen –t rsa

$ cat ~/.ssh/id_rsa.pub

내용을 복사한다.

 

git.lge.com에서 gerrit 방문한다.

 

과정을 완료 했으면 ~/.ssh/known_hosts 복사한 host key 붙여넣는다.

 

$ vi ~/.ssh/known_hosts

 

 

$ git config --global user.name “Your AD Account”

$ git config --global user.email “Your E-mail”

$ git config --global merge.tool kdiff3

 

- Public key Check
       $ ssh -p 29468 165.243.137.26 

 

$ cd ~
$ mkdir bin

$ curl http://android.git.kernel.org/repo > ~/bin/repo

$ chmod a+x ~/bin/repo

 

$ mkdir p500_gingerbread
$ cd p500_gingerbread.

 

$ repo init -u ssh://YourADAccount@165.243.137.26:29468/p500_gingerbread/manifest.git -b p500_gingerbread_master

 

$ repo sync

$ repo start p500_gingerbread_master –all

'old > Git' 카테고리의 다른 글

git 작업취소  (0) 2010.08.07
git 요약  (0) 2010.07.27
Subversion Git 사용법  (0) 2010.05.14
Eclipse Plugins  (0) 2010.02.01
Git과 SVN 통합  (0) 2010.02.01
Posted by jazzlife
,