놀랍게도 모두 제가 발생했던 오류들입니다..
저를 위해 정리해봤습니다 ㅎㅎ
1. .get/index.lock 에러
git add시 에러 발생
.get/index.lock 파일 직접적으로 제거함으로 해결
rm -f ./.git/index.lock
2 . LF will be replaced by CRLF 오류
git add시 에러 발생
(윈도우 명령어. 해당 프로젝트에만 적용하고 싶다면 --global 빼준다)
git config --global core.autocrlf true
(에러 메시지 끄고 알아서 작업하고 싶은 경우)
git config --global core.safecrlf false
blog.jaeyoon.io/2018/01/git-crlf.html
3 . submodule add 오류
깃 클론으로 받은 폴더안에 있는 .git 폴더를 삭제하지 않고, git add시 에러 발생
git rm --cached 파일이름
4. git status 했는데 다 커밋되었다고 나오는 경우
새 파일을 인식하지 못하는 경우
git 파일 직접 삭제한다. or rm -rf.git/
5. ! [rejected] master -> master(fetch first) 오류
깃이 원격 저장소와 현재 로컬 저장소가 동기화되어 있지 않은 경우
git push origin +master
6. RPC failed; curl 18 transfer closed with outstanding read data remaining 오류
push 하는 데이터가 많아 http postBuffer size를 초과한 경우
git config --global http.postBuffer 524388000
git config --global http.postBuffer 1048576000
7. remote origin already exists 오류
origin 을 삭제해주고 다시 주소를 add해서 해결한다
git remote rm origin
git remote add origin repository주소
'Stay Hungry Stay Foolish > Git' 카테고리의 다른 글
Github 프로필 꾸미기 (0) | 2021.08.26 |
---|---|
Github pro 뱃지 받기 (4) | 2021.07.30 |
Git 오류 해결하기 2 (0) | 2021.03.03 |
Github / Git 입문하기 (2) | 2021.02.01 |
Git clone (0) | 2020.10.15 |
댓글