일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 1793번
- 1992번
- 영어
- github
- 2630번
- 권주현의 진짜 영국 영어
- caniuse
- 프로그래머스
- 입이 트이는 영어
- 알고리즘
- 1759번
- 18406번
- SecurityFilterChain
- WebSecurityConfigurerAdapter
- 11727번
- 1057번
- codility
- 백준
- Spring Security
- 파이썬
- 9251번
- python
- programmers
- EBS어학당
- 신규아이디추천
- 2163번
- Java
- 11047번
- 분할정복
- BinaryGap
Archives
- Today
- Total
철갑이의 이모저모
[github] github에 프로젝트 올리기(default 브랜치가 master -> main 으로 변경) 본문
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 |
---|