git 설정

– github 가입
– git 설치
– git 설치 확인

$ git --version
$ git config --list

– 사용자 설정

$ git config --global user.name "byunghoon"
$ git config --global user.email wwwhihaho@gmail.com

– github repo 만들기

$ echo "# 스터디 시작" >> README.md
$ git init
$ git add README.md
$ git commit -m "first commit"
$ git remote add origin https://github.com/PythonYakShaving/wwwhihaho.git
$ git push -u origin master

– README.md 파일 수정 (vim,  VSCode, 마크다운 사용법)

$ git add README.md
$ git commit -m "second commit"
$ git push -u origin master

– 스터디

 

———————–
http://rogerdudler.github.io/git-guide/index.ko.html
https://git-scm.com/
https://milooy.wordpress.com/2017/06/21/working-together-with-github-tutorial/

https://www.quora.com/What-is-the-best-Git-cheat-sheet/answer/Kyle-Pennell?srid=3RnGw

더 해보기
– git clone
– git star
– gist