(Git) 업로드 에러 대처법
·
Git&Linux
Git 명령어1. 기본설정git config --global init.defaultBranch main : 기본 브랜치 main으로 설정git config --global user.name "username" : 깃허브 닉네임 연동git config --global user.email "username@gmail.com" : 깃허브 이메일 주소 연동 2. 에러 대처법Not possible to fast-forward, aborting 에러git pull --rebase : rebase 옵션으로 pull 진행git add (파일명) > git commit -m "메시지" > git rebase --continue : conflict가 발생한 파일을수정 후 rebase로 마무리 한다다시 git push or..