[Git] GitHub 원격저장소에 커밋 올리기

2022. 4. 18. 12:18Git

1. 원격저장소 생성

1.1 GitHub에 접속하여 로그인 후 저장소 생성

1.2 저장소 이름 설정 및 생성

 

1.3 원격저장소 주소 확인

https://github.com/yonghwankim-dev/git_study.git

2. 원격 저장송 커밋 올리기

2.1 원격저장소 연결

iTshirt-cat $ git remote add origin https://github.com/yonghwankim-dev/git_study.git

 

2.2 main branch 생성 및 이동

iTshirt-cat $ git branch main
iTshirt-cat $ git checkout main
  • 2020년 10월부터 원격저장소를 생성하면 기본 브랜치가 main으로 생성됨
  • Git과 GitHub는 다른 단체이기 때문에 CLI에서 'git init' 명령어로 로컬 저장소를 초기화하면 기본 브랜치가 'master'로 생성됨
  • 따라서 원격저장소의 브랜치(main)로 업로드 하기 위해서 그전에 로컬 저장소의 브랜치(master)를 'main'으로 변경해야함

2.2 원격저장소에 업로드

iTshirt-cat $ git push origin main

References

source code : https://github.com/yonghwankim-dev/git_study
팀 개발을 위한 Git Github 시작하기, 정호영 진유림 저