[Git] src refspec [branch_name] does not match any error
push 명령어를 특정 브랜치에 실행할때 아래와 같은 오류가 나는 경우가 있다. $ git push origin [specific_branch_name] error: src refspec [specific_branch_name] does not match any error : failed to push some refs to 'ssh://git.juso.co.kr/juso.git' 이 오류를 해결하기 위한 몇가지 경우의 수가 있다. 1. pull 먼저하기 $ git pull origin [specific_branch_name] 내가 push하고자 하는 목적지의 branch가 지금 내 local의 상태와 일치하지 않아서 생기는 문제일 수 있다. 위와 같은 명령어로 해결 가능하다. 단 위와 같이 pull 명..
개발 기타 지식들/Extra Knowledge
2022. 2. 10. 08:05