신사(SinSa)

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 :feature/01

 

profile

신사(SinSa)

@신사(SinSa)

포스팅이 좋았다면 "좋아요❤️" 눌러주세요!