/
git 원격지 브랜치 삭제(delete remote branch)
git 원격지 브랜치 삭제(delete remote branch)
git 에서 remote branch delete 하는 방법.
삭제할 브랜치 이름은 feature/TEST-860 이다
방법 1
git push origin --delete feature/TEST-860
방법 2
git branch -d feature/TEST-860 git push origin feature/TEST-860
Ref
, multiple selections available,
Related content
How to discard local commits in git - “Your branch is ahead of 'repo/branch' by N commits”?
How to discard local commits in git - “Your branch is ahead of 'repo/branch' by N commits”?
More like this
이미 커밋된 파일을 ignore 하기
이미 커밋된 파일을 ignore 하기
More like this
git push/pull 할때 fatal: refusing to merge unrelated histories 문제 해결
git push/pull 할때 fatal: refusing to merge unrelated histories 문제 해결
More like this
빗버킷 저장소 삭제(Delete a Bitbucket repository)
빗버킷 저장소 삭제(Delete a Bitbucket repository)
More like this
SourceTree 에서 git rebase 수행하기
SourceTree 에서 git rebase 수행하기
More like this
cherry pick a range of commits and merge into another branch
cherry pick a range of commits and merge into another branch
More like this