1:进入文档所在目录
git init
2:git config
git config --global user.name ***
git config --global user.email ***
3:加文档加入git库
git add filename
git commit -m "initial"
4:查看commit list
git log
5:获取特定版本的特定文档
git checkout 5c1f19 filename
6:取消本地的修改
git checkout -- filename
7:获取最新版本
git checkout master
阅读(1639) | 评论(0) | 转发(0) |