https://learngitbranching.js.org/?locale=ko 

 

Learn Git Branching

An interactive Git visualization tool to educate and challenge!

learngitbranching.js.org

 

1. 실습

git branch bugFix
git checkout bugFix
git commit
git checkout main
git commit
git merge bugFix

 

 

2. 코드 설명

2-1 git branch 브랜치명 - 브랜치 생성하기 

git branch bugFix

 

2-2 git checkout 브랜치명 - 브랜치 이동

git checkout bugFix

 

2-3 git commit - 커밋

git commit

2-4 git merge 브랜치명 - 현재 브랜치와 명령문에 적은 브랜치 합치기

git merge bugFix