标签:add 用户信息 commit config ash python ref git reset file
git init #初始化 git add manage.py #提交单个文件 git add . #提交所有文件 git commit -m "all file" #提交注释 git status #状态 git ls-tree head #查看版本中所有文件 git ls-files -s 查看暂存区和版本中所有文件 git log #查看日志 git reflog #查看所有日志 #配置用户信息 git config --local user.name ‘名称‘ git config --local user.email ‘邮箱‘ #回滚 git log git reset --head 2b349bf #回滚 git reflog git reset --head 2b349bf #stash git stash #将当前修改的内容保存到一个地方
标签:add 用户信息 commit config ash python ref git reset file
原文地址:http://www.cnblogs.com/oyoui/p/7300934.html