git unstaged changes after reset

Posted aivnfjgj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git unstaged changes after reset相关的知识,希望对你有一定的参考价值。

相信大家都做过这个操作,就是本地做了修改后,不想提交,想恢复如初

1

git reset HEAD

这样的话,我们就可以回到开始了。但这个操作好像仅限于在master之类的分支上,如果是在 

一个新的远程分支,就会出现: 

Unstaged changes after reset 

 

解决的办法如下2中办法:

1.

 

1

git add .

2

git reset --hard

2. 

1

git stash

2

git stash drop

出现这种现象的原因好像是因为在新分支上,repos没有感知不到这个阶段的改变,你要用 add 或 stash, 让其知晓,才能做想要的回滚。

以上是关于git unstaged changes after reset的主要内容,如果未能解决你的问题,请参考以下文章

git提交代码时,Unstaged changes如何过滤.class .log等文件

stage 和 unstage在git的区别

用于 stage/unstage hunks/lines 的 git CLI 命令,例如 sourcetree

我在材质上使用 angular 10,我收到了这个错误 ExpressionChangedAfterItHasBeenCheckedError: Expression has changed afte

如何快速撤消 git 中的暂存和未暂存的更改?

git aliases