Git Remote Branch 관련 명령어
·
코드와 오류 기록
branch 생성 local feature/01 branch 생성 git checkout -b feature/01 remote feature/01 branch 생성 git push origin feature/01 branch 연동 git branch --set-upstream-to origin/feature-01 branch 삭제하기 develop branch로 이동 후 feature/01 branch 삭제 git checkout develop git branch --delete feature/01 수정된 내용이 있거나 commit 한 이력이 남아있는 경우 (local branch 강제 삭제) git branch -D feature/01 Remote branch 강제 삭제 git push origin :..