git error 정리 ( 에러 발생 시 계속 추가 )

Hyun·2022년 6월 16일
0

기타등등

목록 보기
4/11

there is no tracking information for the current branch

  1. 현재 브랜치를 추적하는 정보가 없다.

    there is no tracking information for the current branch
    -> git pull origin master 입력
    -> git branch --set-upstream-to=origin/master master : branch를 등록하여 추적하게하자...!

failed to push some refs to 'https://github.com~ .git'

  1. remote 저장소에 push를 할 수 없다.

    failed to push some refs to 'https://github.com~ .git'
    -> remote에서 행해진 작업이 local에서 이루어지지 않았으므로 push하기전에 pull부터 해라.
    -> remote repository에서 commit을 잃어버렸을 때 발생
    -> git push -f origin (강제) or pull하고 push


참고

[Git error] failed to push some refs to ''
git pull 가 안먹을때

0개의 댓글