/
(4)-2.Fast-forward merge

(4)-2.Fast-forward merge

[Git & Gerrit Home으로 돌아가기]

 

[Fast forward merge]

1. $ git init

2. (임의의 file add - commit)

3. $ git branch chg1

4. $ git checkout chg1 (3,4번은 -b option 1개로 처리 가능)

5. (임의의 File add X 2번 수행 및 각각 Commit)

6. master로 작업 공간 이동

7. $ git merge chg1

8. $ git log

 

[Git & Gerrit Home으로 돌아가기]