Git bub 계정 생성
New → Repository name 생성
1) git config --global user.name "hoegon kim"
2) git config --global user.email "hoegon304@gmail.com"
git 설치후 git 명령어에서
3) git config --list
생성한 프로젝트 마우스 우클릭 → show local Terminal → git bash 선택
그러면 git bash 터미널이 생성된다.
최초에서 커밋할경우
1) git init
2) git add .
3) git add index.html
4) git status
5) git commit -m "first commit"
6) git remote add origin https://github.com/kimhoegon/board-project.git
7) git remote -v
8) git push origin master
1) git add .
2) git status
3) git commit -m "second commit"
4) git push origin master