git config --global user.name "omelase"
git config --global user.email "11chan11@naver.com"
mkdir git
cd git
mkdir bitcamp-ncp
cd bitcamp-ncp
git init (local repo 생성)
vi .gitignore
gitignore.io에서 제외할 프로그램 목록 작성 후 복붙
github.com에서 remote repo 생성
git remote repo별명 repo주소
git pull repo별명 remote repo브랜치명
git config --global push.default simple
git add .
git commit -m "커밋명"
git branch -m local repo브랜치명 (remote repo브랜치명과 통일)
git push --set-upstream repo별명 repo브랜치명
유저네임, 토큰 입력