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://progit.org/book/

한글 번역 http://dogfeet.github.com/progit/progit.ko.pdf

 

 

Posted by '김용환'
,