如何使用git stash

假设你有两个git分支a和b,你正在分支a上写了一些代码,这时候分支b上有紧急工作需要处理,那么你怎么样保存分支a上的工作现场呢?git stash就是来解决这个问题的。

步骤如下:

  • 保存分支a上的变化
  • git stash
  • check out到分支b,完成分支b上的工作
  • check out回分支a
  • git stash pop

参考

https://opensource.com/article/21/4/git-stash

你可能感兴趣的:(如何使用git stash)