[git] git repository와 local 연결 1. 깃허브 주소 복사 2. cd 로컬 저장소 주소 이동 git init git remote add origin 저장소주소 git pull origin main // 폴더에서 README 파일 확인 가능 git add --all git commit -m "." git push origin main 문제 해결 2023.08.06