一: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的作用是将暂存区的文件从暂存区撤出,但不会更改文件文件的内容。

相关文章:

  • 2022-12-23
  • 2021-08-01
  • 2021-10-25
  • 2021-08-29
  • 2021-05-21
猜你喜欢
  • 2022-12-23
  • 2021-10-24
  • 2022-12-23
  • 2021-04-06
  • 2022-02-01
  • 2022-12-23
相关资源
相似解决方案