当前位置:   article > 正文

git stash 常用命令_git stash 备注

git stash 备注

(1)git stash 暂存当前分支中修改的内容

git stash
  • 1

(2)git satsh 在暂存时加备注信息

git stash save 'fix bug'
  • 1

(3)git satsh list 查看暂存的所有内容

git stash list
  • 1

在这里插入图片描述

(4) 恢复最近1次暂存的内容(对应stash@{0}), 并从stash list中删除

git stash pop
  • 1

(5) 恢复最近1次暂存的内容, 并将该内容在stash list中保留

git stash apply stash@{0}

# 或者恢复其他暂存的内容
git stash apply stash@{2}
  • 1
  • 2
  • 3
  • 4

(6) 查看某次stash中修改的内容

git stash show -p stash@{0}
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/590572
推荐阅读
相关标签
  

闽ICP备14008679号