-
Notifications
You must be signed in to change notification settings - Fork 0
Git 사용법
jaeseok.an edited this page Feb 8, 2021
·
4 revisions
- github에 repository 생성하기
- 내 프로젝트 추가하기
> cd myproject
> git init
> git remote add origin [email protected]:everjs78/[생성한리파지터리].git
> git add *
> git push origin master
이것 대신 master를 git pull origin master 해야 하는 경우도 있음
> git branch --set-upstream-to=origin/master master
> git pull
test