저장소 생성 및 연결 git init : 깃 초기화? git remote add origin 원격저장소주소(깃허브) : 깃 리포지토리 추가 git remote remove origin : 기존 리포지토리 remote 제거 파일 업로드 git pull origin(원격저장소이름) 로컬저장소이름 git add . git commit -m "커밋메시지" git push origin(원격저장소이름) 로컬저장소이름 git branch : 현재 브랜치 이름 확인 git remote -v : 연결 된 원격 저장소 확인