likes
comments
collection
share

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

作者站长头像
站长
· 阅读数 86

git restore指令

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

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

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

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

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

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

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

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

(4)使用git restore也就是:

git restore a.c

(5)用git status看一下状态

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

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

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

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

git restore --staged指令

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

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

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

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

(3)git status看下状态

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

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

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

(5)git restore --staged 的使用

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

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

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

转载自:https://juejin.cn/post/7130883174472630286
评论
请登录