4. Branch !!!
- 1.Branch 만들기 - git branch <branch name>
- 2.Branch 전환하기 - checkout
- 3.Branch 병합하기 - Fast Forward Merge
- 4.Branch 삭제하기 - branch -d
- 5. 동시에 여러 작업하기
- 6. 병합할 때 발생하는 충돌 해결2
1.Branch 만들기 - git branch <branch name>
실습을 위해 먼저 새로운 Working Directory를 만들고 실습합니다.
$ mkdir Branch
$ cd Branch : Branch 폴더에 myfile.txt 이라는 이름으로 파일을 만든 후 커밋합니다.
$ git init : Branch 폴더를 Git working directory로 초기화 합니다.
$ vi myfile.txt : "this is myfile"란 내용으로 파일 생성
$ git add myfile.txt
$ git commit -m "1st commit"
[master (root-commit) a73ae49] 1st commit
1 files changed, 1 insertions, 0 deletions
create mode 100644 myfile.txt
여기까지 진행했다면, 아래 그림과 같은 이력이 남게 됩니다.
issue1' 이라는 이름으로 새로운 브랜치를 작성합니다. 브랜치는 branch 란 명령어로 만들 수 있습니다.
...