1. 깃허브에 repository(원격 저장소) 만들기2. 로컬 저장소 만들기프로젝트 폴더에서 Git bash here 누르고$ git init명령어 입력 3. repository와 로컬 저장소 연결$ git remote add origin [URL]URL은 레포지토리에서 Code 버튼 누르면 뜨는 HTTPS 주소다* SSH로 연결시키려면 따로 키 발급이 필요 // 연결된 repository 변경$ git remote set-url origin [URL]// 연결된 repository 삭제$ git remote rm origin// 연결된 repository 확인$ git remote -v 4. 만약 repository에 gitignore 등 파일이 올라가 있을 경우(없을 경우 생략)$ git pull..