1. GitHub Tutorial
https://guides.github.com/activities/hello-world/
2. 로컬 시스템에 git 설치
https://git-scm.com/book/ko/v1/%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-Git-%EC%84%A4%EC%B9%98
3. 로컬 저장소 생성
$ git init
$ git config user.name "someone"
$ git config user.name "someone@someplace.com"
$ git status
$ git add 원하는파일/폴더이름
$ git commit -m "원하는 내용"
$ git remote add origin https://github.com/Pharah76/hello-python.git
$ git pull --rebase origin master
$ git push origin master
$ git push -u origin master // 이 command를 더 권장
'IT > 기타' 카테고리의 다른 글
[컴퓨터 조립] G4560 + GTS450 (0) | 2017.05.13 |
---|---|
PuTTY 설치 및 설정 (0) | 2017.05.04 |