[Fast forward merge]
1. 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
[Fast forward merge]
1. 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
Add Comment