git add .
git commit -m '本次记录的内容简介'
git pull (origin master)
git push
git checkout -b <branch_name>
git branch -d <branch_name>
git update-index --assume-unchanged /path/to/file
git update-index --no-assume-unchanged /path/to/file
git branch -a //远程git
git branch //本地code
git checkout -b ~ //切到分支
git checkout -b ~ origin ~ //切到从远程拉下来的新分支it