1. 가입 및 셋팅
참조 : http://www.jjpark.net/61
2. git 프로젝트 생성 (test)
3. git 파일 확인
git@github.com:아이디/test.git
4. test
(1) master 가지고 놀기
git clone git@github.com:아이디/test.git
vi README
git add REAME
git commit -m 'added README"
git push
(2) feature 생성하고 놀기
git checkout -b new-feature master
git add
git commit -a -m "haha"
git branch -l
git push origin new-feature
(3) merge
$ git checkout -b hotfix
$ vim a.txt
$ git commit -a -m 'added hotfix'
$ git checkout master
$ git merge hotfix
$ git status
$ git branch -d hotfix
$ git push
(4) rebase
$ git checkout new-feature
$ git rebase master
$ git push
* rebase와 merge에 대한 좋은 설명
http://blog.outsider.ne.kr/666
* git에 대한 좋은 책
pro git
한글 번역 http://dogfeet.github.com/progit/progit.ko.pdf
'scribbling' 카테고리의 다른 글
lo4jdbc 사용시 log4j.xml 설정 (0) | 2012.05.17 |
---|---|
cygwin 에서 git flow 설치 (0) | 2012.04.26 |
정규식 테스트할 수 있는 웹 싸이트 (0) | 2012.04.20 |
Redis Collection 사용시 메모리 소요비용 (0) | 2012.04.19 |
Twitter 에서 사용한 Mysql 소스 코드 공개 (0) | 2012.04.19 |