초기 PUSH
git config --global user.name [github 가입이름]
git config --global user.email [github 가입이메일]
git init
git add .
git commit -m [메세지]
git push -u [repo 주소] master
branch 이름이 바뀌었을 때
git branch -m main master
git fetch origin
git branch -u origin/master master
git remote set-head origin -a
Origin 추가
git remote add origin [repo 주소]
'기타 > Github' 카테고리의 다른 글
GIT fatal: 'master' does not appear to be a git repositoryfatal: Could not read from remote repository. 발생 시 (0) | 2021.02.08 |
---|---|
Github 다뤄보기 (0) | 2021.01.20 |