[ERROR] git push 에러 정리
깃허브에 커밋이 되지 않는다..! 현재 위치의 폴더가 깃허브의 원격 레포지토리랑 연결이 안 돼 있다는 오류 fatal: No configured push destination. Either specify the URL from the command-line or configure a remote repository using git remote add and then push using the remote name git push 현재위치 폴더와 원격 레포지토리 연동 후, push 명령어 사용해보기 git remote add origin (레포지토리 주소) git push --set-upstream origin main 오류.. To ! [rejected] main -> main (fetch first)..
2022.10.28