git init
git status
git clone repository_url
git config user.name
git config user.email
git branch branch_name
git checkout branch_name
git checkout 0b branch_name
git add .
git commit -m 'message'
git commit -am 'message'
git push origin branch_name
최초 한번만 가능하다
두번째 부터는 자동
git pull
or git push
without arguments.