2012. 11. 14. 16:55
Git, GitHub
AWS에 Ubuntu 12버전 이미지를 설치하고 개발환경 구성을 하고 있다. 개발소스의 버전관리는 Git을 사용할 것이고, Git 설치하는 과정을 정리한다
<Ubuntu 설치하기>
- ci 계정을 하나 만든다 : prompt> useradd ci
- sudo 권한이 없다면 : root 권한에서 prompt> sudo useradd –m ci –G admin
- 기본 라이브러리들 설치 : prompt> sudo apt-get install expat curl zlib1g-dev libssl-dev openssl make
- git을 설치 한다 (현재 1.7.9.5-1 버전) : prompt> sudo apt-get install git-core
- git 버전 확인 : prompt> git –version
- binary 위치 : /usr/bin/git
<Git 환경설정>
ci@ip-10-146-81-140:~$ which git /usr/bin/git ci@ip-10-146-81-140:~/git_repositories$ git config --global user.name "dowon" ci@ip-10-146-81-140:~/git_repositories$ git config --global user.email nulpulum@gmail.com ci@ip-10-146-81-140:~/git_repositories$ git config --global --list user.name=dowon user.email=nulpulum@gmail.com |
* 전체 설정 정보 : http://www.kernel.org/pub/software/scm/git/docs/git-config.html#_variables
'Git, GitHub' 카테고리의 다른 글
[Git] commit 사용하기 (0) | 2012.11.26 |
---|---|
[Git] diff 사용하기 (0) | 2012.11.22 |
[Git] Branch 전략 (1) | 2012.11.14 |
SVN에 대하여 이해하기 (0) | 2012.09.20 |
[Git] 레퍼런스 모음 (0) | 2012.09.10 |