git restore指令和git restore --staged 的使用

1,753 阅读1分钟

git restore指令

其实就是已经被追踪的代码从工作区撤销成原本没编辑过的状态,这个对于我们工作中的环境的配置文件的恢复很有帮助

(1)先用git status看一下状态

image.png

(2)打开a.c添加点内容(原本内容是aaa)

image.png

(3)再用git status看一下状态

image.png

此时a.c的状态是刚刚更改过,但是还没有用git add指令添加到暂存区中,也就是说a.c目前处于工作区下。

(4)使用git restore也就是:

git restore a.c

(5)用git status看一下状态

image.png

(6)最后看一下a.c中的内容

image.png

结论:git restore指令使得在工作空间但是不在暂存区的文件撤销更改(内容恢复到没修改之前的状态)

git restore --staged指令

(1)先用git status看下状态,再用cat a.c 看下a.c文件的内容

image.png

(2)vim a.c 打开文件修改文件的内容

image.png

(3)git status看下状态

image.png

(4)git add a.c 将文件添加到暂存区

image.png

(5)git restore --staged 的使用

image.png

可以看到使用git restore --staged之后,文件的内容并没有改变。

结论:git restore --staged的作用是将暂存区的文件从暂存区撤出,但不会更改文件的内容