git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/bdapp/test.git
git status
git add .
git status
vim .gitignore
*.bak
build/
git diff
git commit -m "注释"
git rm 文件
git mv 文件
git log
git branch
git checkout 分支名
git push origin 分支
git pull