반응형
아이디@DESKTOP-00GJNTR MINGW64 /c/workspace/front (master)
$ git branch
main
* master
아이디@DESKTOP-00GJNTR MINGW64 /c/workspace/front (master)
$ git branch -D main
Deleted branch main (was 6a3a956).
아이디@DESKTOP-00GJNTR MINGW64 /c/workspace/front (master)
$ git branch
* master
아이디@DESKTOP-00GJNTR MINGW64 /c/workspace/front (master)
$ git push origin --delete branch명
To github.com:~.git
- [deleted] branch명
git 에서 local 내에서
특정 branch를 삭제하려는 경우
git branch -D branch명
을 사용해주면 local 내에서
특정 branch를 삭제할 수 있고
Repository에 있는
remote branch를 삭제하려는 경우
git push origin --delete branch명
을 사용해주면 된다
반응형
'Tools > Git' 카테고리의 다른 글
Github Pull Request 없이 branch 비교방법 (0) | 2022.05.03 |
---|---|
git 특정 시점 이후의 commit 삭제방법 (0) | 2022.04.13 |
git remote를 포함한 전체 branch 확인방법 (0) | 2022.02.21 |
Git Bash Please use a personal access token instead. 해결방법 (0) | 2022.02.21 |
git branch -a escape 방법 (0) | 2022.02.21 |
댓글