티스토리 뷰

git branch 간단한 tutorial입니다.

 

1.branch 생성

git branch sub1 # sub1 branch 생성

2.branch 변경 - checkout

 git checkout sub1 # 현재 branch 변경, sub1 branch

 

* branch 생성 및 변경 한번에 하기

git checkout -b sub1 # sub1 branch 생성 및 현재 branch로 변경

3.push

touch testfile.txt # 파일 생성
git add testfile.txt # indexing
git commit -m "create testfile" # commit
git push origin sub1 # push, remote repository에 sub1 branch 생성

git branch -r # remote branch 확인

4.merge

git checkout main # main branch로 이동
git merge sub1 # merge main, sub1
git push origin main

 

5.branch 삭제

보통 branch 삭제시 안전하게 -d 옵션을 같이 사용합니다. merge가 완료된 branch만 삭제하는 옵션입니다.

 git branch -d sub1 # sub1 branch 삭제

Local Repository Branch 삭제
Remote Repository Branch 삭제

 

이상입니다.

 

댓글