내가 Git을 사용하는 방법
Github project clone
git clone https://github.com/..../project.git
Github에 관리중인 project를 checkout한다.
Pull
git pull origin master
Push
git push origin master
commit
// 변경사항이 발생한 파일을 Staging Area에 추가한다. (모두)
git add .
// Staging Area에 있는 파일을 Commit 한다.
git commit -m "commit message"