개발 구축 환경
git 새로운 repository 올리기
우롱차
2020. 8. 25. 09:07
728x90
새로운 리파지토리 올리기
git init
git config --local user.name lovelyhyeony
git config --local user.email dmlgus1222@naver.com
git add .
>>> 내 깃허브가서 새로운 레파지토리 만들고 프로젝트 후 제목 쓰고 바로 create 하면
git remote add origin 리파지토리 주소 < 복사 후 shift + insert
git commit -m ""
git push -u origin master
하면 끝!
728x90