철갑이의 이모저모

[github] github에 프로젝트 올리기(default 브랜치가 master -> main 으로 변경) 본문

Git

[github] github에 프로젝트 올리기(default 브랜치가 master -> main 으로 변경)

철갑 2022. 7. 9. 11:16
728x90

1. github 에서 reposiroty 생성

 

2. git bash 에서 command 입력

업로드 하고자 하는 프로젝트 위치에서 git bash command 실행

$ git config --global user.name "name"  // 이름 입력
$ git config --global user.email "email"  // 메일주소 입력
$ git init                                          // .git 폴더 생성
$ git add 업로드할파일                       // 파일이 staging area에 저장
$ git status                                       // 상태 확인
$ git commit -m "commit 주석"            // commit
$ git remote add origin repository주소   // 원격 저장소 주소 등록
$ git push -u origin main                  // push

원격 저장소 주소

+ 2022.07.09)

There isn’t anything to compare.

main and master are entirely different commit histories.

현재 master로 push 할 경우 위와 같은 메세지가 나올 것이다. 기본 브랜치가 master 에서 main으로 변경되었기 때문이다.

강제로 주입을 해도 된다면 아래와 같이 입력 (checkout 후 강제 주입)

git checkout master
git branch main master -f
git checkout main
git push origin main -f

 

git에 올라간 것을 확인할 수 있다.

728x90

'Git' 카테고리의 다른 글

[github] git push error 해결 방법  (0) 2020.12.07