기타/Github
깃 명령어
머리올리자
2023. 2. 12. 17:26
초기 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 주소]