当前位置:   article > 正文

git stash 用法_git slash

git slash

有时候我们代码写到一半突然要切到别的分支上去改代码
但是又不想把现在还没写完的代码上传到仓库
这个时候就可以使用 git stash
先将未完成的工作保存在本地

一共三步
  1. 将当前的所有工作保存
git stash
Saved working directory and index state WIP on production: 9c0b32d html 更新
  • 1
  • 2
  1. 查看你的slash 列表
git stash list
stash@{0}: WIP on production: 9c0b32d html 更新
stash@{1}: WIP on production: bc0437d html2 更新
  • 1
  • 2
  • 3
  1. 选中你需要的slash,切换回来
git stash pop stash@{0}
  • 1

pop之后,你的代码就回到上次你停止工作的地方了。可能会遇到代码冲突的问题,依次解决即可。

参考地址

https://gitbook.tw/chapters/faq/stash.html

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

闽ICP备14008679号