728x90
반응형
요즘 분산 SCM 많이 사용하고 있죠. 가장 많이 이용되는 것으로는 Git, Mercurial, Bazazr 등이 있지요~ 이중에서 우리는 Git 사용법을 아주 간단하게 알아보겠습니다.
- http://git-scm.com/
- Install
- 래드햇 계열 (CentOS)
# yum install git
- 데비안 계열 (Debian, Ubuntu)
# apt-get install git
- 래드햇 계열 (CentOS)
- Setup
# git config --global user.name "Your Name" # git config --global user.email youremail@example.com # git config --global alias.co checkout # git config --global alias.st status
홈디렉토리에 .gitconfig 에 생성된 것 확인[user] name = Your Name email = youremail@example.com [alias] co = checkout st = status
- Create Repository
# cd 프로젝트디렉토리 # git init Initialized empty Git repository in /Users/mhartl/rails_projects/first_app/.git/
- .gitignore 작성
web/logs web/tmp web/server.pid *.swp *~ .DS_Store
- Add and Commit
# git add .
# git commit -m "Initial commit"
- 상태 및 로그 확인
# git status or git st # git log
728x90
반응형
'ETC (IT)' 카테고리의 다른 글
TABLE, 정말 레이아웃에 쓰면 그렇게 나쁜 것인가? (0) | 2011.05.14 |
---|---|
(Freeware for Business) Viu 2 : 이미지뷰어 (0) | 2011.05.11 |
CentOS 5.x 설치 (0) | 2011.03.29 |
MinGW 설치 (0) | 2011.01.29 |
쓸만한 에디터 (Freeware) (0) | 2010.12.23 |