美文网首页
2019-06-17 暂时保存工作区的内容

2019-06-17 暂时保存工作区的内容

作者: 张大志的博客 | 来源:发表于2019-06-17 17:07 被阅读0次
    [root@VM_0_3_centos project]# vim index.html  #修改文件
    index
    此时开发中临时加塞要恢复到之前的版本,如何把工作区的内容暂时保存
    [root@VM_0_3_centos project]# git stash   #暂时保存工作区的文件
    [root@VM_0_3_centos project]# git stash list
    stash@{0}: WIP on master: 0d4c0f4 modify readme.md
    [root@VM_0_3_centos project]# git reset --hard commit id #将工作区的内容恢复到某个版本
    此时如果要回到之前修改的工作区的内容
    [root@VM_0_3_centos project]# git stash apply #将内容弹出,但不清除
    [root@VM_0_3_centos project]# git stash list
    stash@{0}: WIP on master: 0d4c0f4 modify readme.md  #发现还在
    [root@VM_0_3_centos project]# git stash pop  #将内容弹出并且删除
    [root@VM_0_3_centos project]# git stash list  #发现不在了
    

    相关文章

      网友评论

          本文标题:2019-06-17 暂时保存工作区的内容

          本文链接:https://www.haomeiwen.com/subject/urkzfctx.html