git branch

local branch 생성 및 체크아웃

git checkout -b "브랜치 이름"

 

remote branch 삭제

git push origin --delete "branch name"

 

remote branch 생성 및 push

git branch --set-upstream-to origin/"branch name"

 

출처

https://www.lesstif.com/gitbook/git-delete-remote-branch-20776547.html

+ Recent posts