首页 > 代码库 > git

git

git init初始化仓库

git add添加到暂存区

git commit -m保存为快照并提交到版本库

git commit -am相当于git add和commit组合命令

git status查看工作区文件状态

git diff查看文件内容变更详情(和暂存区比较)

...  diff HEAD和版本库当前版本库比较

更多diff详见 :http://www.cnblogs.com/wish123/p/3963224.html

git reset --hard +版本名 重置工作区代码为指定版本

git show 当前版本信息,以及相对于上个版本的改动

git log 版本库信息

git reflog/fsck 检查丢失的提交

git stash将工作区恢复到改动前,并将改动保存起来,以备将来使用

git stash list 查看保存变动的记录,结果 如:stash@{0}: WIP on master: a85cfb2 第三次提交

git stash apply stash@{0}恢复保存的变动

git