Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- bash
- Windows
- import
- vscode
- GIT
- 네트워크
- lsof
- tomcat
- resource
- xargs
- Eclipse
- context
- ssh
- port
- Mac
- 줄바꿈 문자
- IntelliJ
- VirtualBox
- Quartz
- find
- profile
- maVen
- JavaScript
- netsh
- 단축키
- plugin
- grep
- Windows 10
- Source
- web.xml
Archives
- Today
- Total
develog
[git] error: unable to delete 'develop': remote ref does not exist, 원격 브랜치 삭제 오류 본문
카테고리 없음
[git] error: unable to delete 'develop': remote ref does not exist, 원격 브랜치 삭제 오류
냐옴 2024. 7. 18. 22:10
원격 브랜치 삭제 시도시 아래 오류가 발생
# 원격 브랜치 삭제 시도
$ git push origin --delete develop
error: unable to delete 'develop': remote ref does not exist
git fetch --prune 으로 최신 상태로 갱신하고 다시 확인한다
# 로컬의 원격 브랜치 목록을 최신 상태로 갱신한다
git fetch --prune
# 브랜치 목록을 다시 확인한다
git branch -a
Comments