## git 操作说明
* 查看文件的修改记录
`git log filepath`
显示例如: `commit 7641210b242a95eed17827dd8159e76bdad6d619`
* 回退到指定的版本
`git reset 7641210b242a95eed17827dd8159e76bdad6d619 filepath`
* 提交到本地参考
`git commit -m "revert old file because yjl commmit have a bug"`
* 更新到工作目录
`git checkout filepath`
* 提交到远程仓库
`git push origin master`