新需求只写了一半遇到紧急BUG,需要git操作怎么办?

Posted stacylittlesun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新需求只写了一半遇到紧急BUG,需要git操作怎么办?相关的知识,希望对你有一定的参考价值。

1.先用 $ git stash  把当前的工作现场 存放 起来

2.$ git stash  save ‘备注信息‘  //为这次暂存做个标记

3.git stash 可以多次操作,每次新的stash会固定放到[email protected]{0}位置,以此类推

[email protected]{0}

[email protected]{1}

[email protected]{2}

......

3.$ git stash list 可以查看stash列表,如果有save信息,也会相应显示

4.$ git stash show [email protected]{X}命令来查看对应的每次修改,X表示标号,有save标注也可以不查看

5.$ git stash apply [email protected]{X}命令还原指定现场

6.$ git stash pop 还原最后一次保存的现场,即[email protected]{0},git checkout .可以清空这次修改

 


以上是关于新需求只写了一半遇到紧急BUG,需要git操作怎么办?的主要内容,如果未能解决你的问题,请参考以下文章

需求开发到一半需要改别的分支的bug该怎么办呢?(git stash 和 git commit)

需求开发到一半需要改别的分支的bug该怎么办呢?(git stash 和 git commit)

版本管理·玩转git(分支管理)

SVN trunk(主线) branch(分支) tag(标记) 用法详解和详细操作步骤

Git命令之stash

git stash