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 | 29 | 30 |
Tags
- Source
- Windows 10
- vscode
- find
- IntelliJ
- 단축키
- GIT
- lsof
- maVen
- profile
- JavaScript
- Quartz
- VirtualBox
- Eclipse
- netsh
- 줄바꿈 문자
- web.xml
- plugin
- import
- bash
- context
- Mac
- Windows
- grep
- 네트워크
- tomcat
- ssh
- xargs
- port
- resource
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