Error Handling/Git&Github

fatal: Refactor/chatbots(브랜치명) cannot be resolved to branch

jjscript 2023. 5. 26. 09:06
728x90
반응형

문제 상황

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
반응형