브랜치 작업을 위한 주요 Git 명령어. 더 많은 정보: https://git-scm.com/docs/git-branch.
*
로 강조됨) 나열:git branch --all
git branch --all --contains {{커밋_해시}}
git branch --show-current
git branch {{브랜치_이름}}
git branch {{브랜치_이름}} {{커밋_해시}}
git branch -m {{이전_브랜치_이름}} {{새로운_브랜치_이름}}
git branch -d {{브랜치_이름}}
git push {{원격_이름}} --delete {{원격_브랜치_이름}}