250x250
반응형
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
- 정규식 연산
- SQL
- JavaScript
- 자료구조
- dense rank
- MYSQL
- GROUPING
- 뷰
- sql 저장 모듈
- ROLLUP
- 비절차적 데이터 조작어
- show graph characteristics
- window 함수
- dom
- 위코드
- Node.js
- simple case expression
- SQLD
- python
- 정보처리기사
- coalesce
- searched case expression
- html
- list multiplication
- 코드 스니펫
- git
- 문법 차이
- 기업 협업
- Oracle
- execute immediate
Archives
- Today
- Total
프로그래밍 숲
fatal: Refactor/chatbots(브랜치명) cannot be resolved to branch 본문
Error Handling/Git&Github
fatal: Refactor/chatbots(브랜치명) cannot be resolved to branch
jjscript 2023. 5. 26. 09:06728x90
반응형
문제 상황
git push를 하려고 했더니 갑자기 push가 안됐다.
git push origin Refactor/chatbots
fatal: Refactor/chatbots(브랜치명) cannot be resolved to branch
해결 방법
cd ./.git/refs/heads 로 경로를 이동해서 list를 확인해보았다.
cd ./.git/refs/heads
ls
Refactor 대신 refactor 폴더가 있었다.
이전에 refactor/브랜치명 으로 push를 한 적이 있어서 그런 것 같다.
git branch -m refactor/chatbotss
branch 이름을 refactor/chatbotss로 바꾸고 다시 push 하니까 잘 됐다.
(refactor/chatbots로 바꾸니 이유는 모르겠지만 push가 안됐다)
728x90
반응형
Comments