git git tips & tricks git tips Current: git 원격지 브랜치 삭제(delete remote branch) git 원격지 브랜치 삭제(delete remote branch) git 에서 remote branch delete 하는 방법.삭제할 브랜치 이름은 feature/TEST-860 이다방법 1 git push origin --delete feature/TEST-860 BASH 방법 2 git branch -d feature/TEST-860 git push origin feature/TEST-860 BASH RefHow to delete a Git branch both locally and remotely? ×