git
回滚到历时版本
找到历史版本,执行 reset:
git reset HEAD
然后强制推送:
git push -f
暂存
在切换分支时,对于暂时不打算提交的代码,可以先暂存一下:
git stash
查看历史暂存:
git stash list
恢复暂存:
git stash apply stash@{id}
对于已恢复或者不使用的暂存,执行删除:
git stash drop stash@{id}
新增并提交
只针对于暂存的修改,新建的文件内容无法使用:
git commit -am 'test'
上面命令相当于:
git add .
git commit -m 'test'
网友评论