Git branch, merge, checkout 명령어 모음
Branch 브랜치, checkout 명령어들 git banch exp_name # exp(experimental), feature etc.. 이름은 붙이기 나름 git branch git branch branch_name git branch -b branch_name git branch -D branch_name # 강제 삭제 (병합되지 않은 브랜치도) git checkout branch_name # 브랜치 전환 git checkout -b branch_name # 브랜치 생성 후 전환 브랜치 로그 명령어 git log --branches --decorate # 각종 브랜치들의 로그 확인 gti log --branches --decorate --graph # 그래프로 확인 가능, git log --br..