从01开始 从01开始
首页
  • 计算机科学导论
  • 数字电路
  • 计算机组成原理

    • 计算机组成原理-北大网课
  • 操作系统
  • Linux
  • Docker
  • 计算机网络
  • 计算机常识
  • Git
  • JavaSE
  • Java高级
  • JavaEE

    • Ant
    • Maven
    • Log4j
    • Junit
    • JDBC
    • XML-JSON
  • JavaWeb

    • 服务器软件
    • Servlet
  • Spring
  • 主流框架

    • Redis
    • Mybatis
    • Lucene
    • Elasticsearch
    • RabbitMQ
    • MyCat
    • Lombok
  • SpringMVC
  • SpringBoot
  • 学习网课的心得
  • 输入法
  • 节假日TodoList
  • 其他
  • 关于本站
  • 网站日记
  • 友人帐
  • 如何搭建一个博客
GitHub (opens new window)

peterjxl

人生如逆旅,我亦是行人
首页
  • 计算机科学导论
  • 数字电路
  • 计算机组成原理

    • 计算机组成原理-北大网课
  • 操作系统
  • Linux
  • Docker
  • 计算机网络
  • 计算机常识
  • Git
  • JavaSE
  • Java高级
  • JavaEE

    • Ant
    • Maven
    • Log4j
    • Junit
    • JDBC
    • XML-JSON
  • JavaWeb

    • 服务器软件
    • Servlet
  • Spring
  • 主流框架

    • Redis
    • Mybatis
    • Lucene
    • Elasticsearch
    • RabbitMQ
    • MyCat
    • Lombok
  • SpringMVC
  • SpringBoot
  • 学习网课的心得
  • 输入法
  • 节假日TodoList
  • 其他
  • 关于本站
  • 网站日记
  • 友人帐
  • 如何搭建一个博客
GitHub (opens new window)
  • 计算机历史

  • 数字电路

  • 计算机组成原理

  • 汇编语言

  • C语言

  • 数据结构

  • 操作系统

  • Linux

  • 计算机网络

  • Git

    • 版本控制
    • 安装和配置
    • 初识版本库
    • 版本管理
    • 工作区、暂存区和修改
      • 工作区(Working Directory)
      • 版本库(Repository)
      • 实践是检验标准的唯一真理
      • 管理修改
      • 暂存区里的修改
      • 撤销修改
      • 撤销工作区的所有修改
      • 删除文件
      • 小结
    • 远程仓库
    • 分支管理
    • GitStash
    • 远程仓库和分支
    • 标签管理
    • 自定义Git
    • 使用可视化工具
    • GithubAction
    • 常用Git命令
    • Git系列小结
    • Git
  • 数据库

  • 计算机小知识

  • 编译原理

  • 名人堂

  • 计算机基础
  • Git
2023-01-17
目录

工作区、暂存区和修改

# 04.工作区、暂存区和修改

工作区和暂存区是Git中一个非常重要的概念,弄明白了他们,就弄明白了Git的很多操作到底干了什么。请读者务必也动手实践!

# 工作区(Working Directory)

工作区,就是一个目录,比如我的LearnGit​文件夹就是一个工作区:

​​

我们平时更新版本什么的,都是在这里完成的,可以理解成是在这里工作的。

‍

‍

# 版本库(Repository)

工作区有一个隐藏目录.git​,这个不算工作区,而是Git的版本库。

Git的版本库里存了很多东西,其中最重要的就是称为stage​​(或者叫index)的暂存区,还有Git为我们自动创建的第一个分支master​​,以及指向master​​的一个指针叫HEAD​​。(分支的概念我们后续介绍)

前面讲了我们把文件往Git版本库里添加的时候,是分两步执行的:

第一步是用git add​把文件添加进去,实际上就是把文件修改添加到暂存区!

第二步是用git commit​​提交更改,实际上就是把暂存区的所有内容提交到当前分支,这里是master分支。在我们创建Git版本库时,Git会自动为我们创建master​​分支。

​​

你可以简单理解为,需要提交的文件修改通通放到暂存区,然后,一次性提交暂存区的所有修改。

在.git 文件夹里面有一个index 文件,就是暂存区。

通过**「git status」查看「git」状态时,「红色」的文件表示在「工作区」;「绿色」的文件表示在「暂存区」。**

‍

# 实践是检验标准的唯一真理

我们来逐步说明下,一个文件是怎么提交的。首先我们吸怪下readme.txt,加上一行:

$ echo "Git has a mutable index called stage." >> readme.txt

$ cat .\readme.txt
Git is a distributed version control system
Git is free software distributed under the GPL.
Git has a mutable index called stage.
1
2
3
4
5
6

‍

并且,新添加一个文件,叫做LICENSE

$ echo "something" > LICENSE
$ cat LICENSE
something
1
2
3

‍

然后我们查看下仓库状态

$ git status
On branch master
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   readme.txt

Untracked files:
  (use "git add <file>..." to include in what will be committed)
        LICENSE
1
2
3
4
5
6
7
8
9
10

Git非常清楚地告诉我们,readme.txt​被修改了,而LICENSE​还从来没有被添加过,所以它的状态是Untracked​。

‍

现在,使用两次命令git add​,把readme.txt​和LICENSE​都添加后,用git status​再查看一下:

$ git status
On branch master
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
        new file:   LICENSE
        modified:   readme.txt
1
2
3
4
5
6

现在,暂存区的状态就变成这样了:

​git-stage​

所以,git add​命令实际上就是把要提交的所有修改放到暂存区(Stage)。

‍

接下来,我们提交:

$ git commit -m "understand how stage works"
[master 8f5bb58] understand how stage works
 2 files changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 2-versionControl/LICENSE
1
2
3
4

此时,工作区就是干净的了:

$ git status
On branch master
nothing to commit, working tree clean
1
2
3

现在版本库变成了这样,暂存区就没有任何内容了:

​git-stage-after-commit​

‍

‍

‍

# 管理修改

为什么Git比其他版本控制系统设计得优秀,因为Git跟踪并管理的是修改,而非文件。举个例子,假设目前readme.txt有114514行,然后你在最后一行添加了一句话;

在使用版本控制工具之前,我们的备份方式可能就是直接复制一份readme.txt,然后再后面再追加一行。此时我们就有了两个文件:

readme.txt        //新版本的
readme.txt.backup //旧版本的
1
2

并且,这两个文件是相差无几的!很多内容都是一样的(除了最后一行),这会造成存储空间的浪费。

而Git,管理的是修改。比如,你增加了一行内容后,Git会记录这个修改:增加了一行,内容为“xxxx”,这样,如果想要回退到上一个版本,只需将上次修改的内容撤销就可以了!相比重复存储一个文件的方式,大大节省了存储空间的浪费,还可以直接查看修改,而不是将前后两个版本的文件用diff比较后才能得到差异。

‍

在Git中,添加一个文件,修改文件里的内容,删除一个文件,都算一个修改。

‍

# 暂存区里的修改

在Git中,我们每次修改得先放到暂存区,只有暂存区里的修改才会被commit,我们修改下readme.txt:

$ echo "Git tracks changes." >> readme.txt

$ cat readme.txt
Git is a distributed version control system
Git is free software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes.
1
2
3
4
5
6
7

‍

此时我们查看下仓库状态,可以看到已经添加到暂存区了,可以被提交了:

$  git status
On branch master
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
        modified:   readme.txt
1
2
3
4
5

‍

‍

我们再次修改readme.txt:

$ cat readme.txt 
Git is a distributed version control system.
Git is free software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes of files.
1
2
3
4
5

‍

然后提交:

$ git commit -m "git tracks changes"
[master aeb06f4] git tracks changes
 1 file changed, 0 insertions(+), 0 deletions(-)
1
2
3

‍

然后再次查看仓库状态:

$ git status
On branch master
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   readme.txt
1
2
3
4
5
6

可以看到第二次的修改,并没有被提交!只有git add​后,才会把修改提交到暂存区,git commit​只负责把暂存区的修改提交了。

‍

‍

‍

‍

# 撤销修改

‍

当你在工作区里写代码的时候,突然发现写错文件了,这些代码应该是写到另一个文件的,怎么办呢?

你可以打开文件,然后手工删除自己加上去的代码,但这样不仅费时费力,还可能删错或者删漏代码。

其实,在修改文件后,如果查看仓库状态,Git会很贴心的告诉你怎么丢弃工作区的修改。我们来测试下:

$ echo "AAA" >> readme.txt   //假设这是错误的代码
$ cat readme.txt
Git is a distributed version control system.
Git is free software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes of files.
AAA

$ git status
On branch master
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   readme.txt

no changes added to commit (use "git add" and/or "git commit -a")
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

‍

Git告诉我们,使用 "git restore <file>​..." 可以丢弃(discard )工作区里的修改,我们来测试下:

$ git restore readme.txt
$ cat readme.txt
Git is a distributed version control system
Git is free software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes.
1
2
3
4
5
6

可以看到我们的修改确实被丢弃了,如果想要撤销工作区的所有修改:git resotre .​

‍

# 撤销工作区的所有修改

如果你不仅在工作区里修改了,还添加到了暂存区怎么办?同样的,我们查看仓库状态的时候,Git也会贴心的告诉我们怎么丢弃暂存区里的修改:

$ echo "AAA" >> readme.txt
$ cat readme.txt
Git is a distributed version control system
Git is free software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes.
AAA


$ git status
On branch master
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
        modified:   readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14

‍

Git告诉我们,使用 "git restore --staged <file>...​" 可以丢弃暂存区里的修改(unstage)。我们来试试:

$ git restore --staged readme.txt

$ git status
On branch master
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   readme.txt

no changes added to commit (use "git add" and/or "git commit -a")
1
2
3
4
5
6
7
8
9
10

可以看到目前暂存区里是空的,没有需要提交的,如果要提交着用git add​。

‍

还有其他类似的命令可以撤销修改,例如在廖雪峰老师的博客里撤销修改 (opens new window),这样写到:

场景1:当你改乱了工作区某个文件的内容,想直接丢弃工作区的修改时,用命令git checkout -- file​

场景2:当你不但改乱了工作区某个文件的内容,还添加到了暂存区时,想丢弃修改,分两步,第一步用命令git reset HEAD <file>​,就回到了场景1,第二步按场景1操作。

Git是一直在更新的,有些新版本提供了新的命令,个人认为restore更加好记一点。

‍

# 删除文件

‍

在Git中,删除也是一个修改操作,我们实战一下,先添加一个新文件test.txt​到Git并且提交:

$ git add test.txt

$ git commit -m "add test.txt"
[master 8889d50] add test.txt
 1 file changed, 1 insertion(+)
 create mode 100644 test.txt
1
2
3
4
5
6

一般情况下,我们可以在文件管理器中把没用的文件删了,或者用rm​命令删了:

$ rm test.txt
1

‍

目前工作区和版本库的版本就不一致了,使用git status​可以看到哪些文件被删除了:

$ git status
On branch master
Your branch is ahead of 'gitee/master' by 3 commits.
  (use "git push" to publish your local commits)

Changes not staged for commit:
  (use "git add/rm <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        deleted:    test.txt
no changes added to commit (use "git add" and/or "git commit -a")
1
2
3
4
5
6
7
8
9
10

‍

我们可以使用提交这次修改

$ git add test.txt

$ git commit -m "delete test.txt"
[master b391595] delete test.txt
 1 file changed, 1 deletion(-)
 delete mode 100644 test.txt
1
2
3
4
5
6

‍

# 使用git rm​​:一步到位

注意我们刚刚是先删除,然后再add 和 commit的,我们可以简化为一条命令:git rm​。

首先我们准备下文件

$ echo "test" > test.txt
$ git add test.txt
$ git commit -m "add test.txt"
[master 42c477d] add test.txt
 1 file changed, 1 insertion(+)
 create mode 100644 test.txt
1
2
3
4
5
6

‍

然后使用git rm​,并查看仓库状态

$ git rm test.txt
rm 'test.txt'

$ git st
On branch master
Your branch is ahead of 'gitee/master' by 5 commits.
  (use "git push" to publish your local commits)

Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
        deleted:    test.txt
1
2
3
4
5
6
7
8
9
10
11

‍

可以看到文件被删除了,并且本次删除已经被提交到了暂存区,可以commit了,我们再次提交,结束。

$ git commit -m "delete test.txt"
1

‍

以下两种情况,不能正常使用git rm

  • 工作区是clean的,然后修改了工作区的文件;
  • 工作区是clean的,然后修改了工作区的文件,并提交到暂存区

我们可以加上-f参数,git rm -f​,表明强制删除。

‍

# git rm -f​​​

先准备文件

$ echo "test" > test.txt
$ git add test.txt
$ git commit -m "add test.txt"
1
2
3

‍

修改文件后使用git rm​:会提示不能删除

$ echo "test" >> test.txt

$ git rm test.txt
error: the following file has local modifications:
    test.txt
(use --cached to keep the file, or -f to force removal)
1
2
3
4
5
6

‍

我们可以使用git rm -f ​​文件名来强制删除

$ git rm -f test.txt
rm 'test.txt'

$ git st
On branch master
Your branch is ahead of 'gitee/master' by 7 commits.
  (use "git push" to publish your local commits)

Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
        deleted:    test.txt
1
2
3
4
5
6
7
8
9
10
11

‍

如果我们误删了怎么办呢?还是和之前一样,使用git restore --staged <file>​来将修改从暂存区里拿出来,然后再使用git restore <file>​来恢复数据:

$ git restore --staged test.txt
$ git restore test.txt
$ ll
total 7
drwxr-xr-x 1 peterjxl 197121  0  1月 11 07:37 1-diffAndPath/
drwxr-xr-x 1 peterjxl 197121  0  1月 14 07:19 2-versionControl/
-rw-r--r-- 1 peterjxl 197121  6  1月 14 11:58 test.txt
1
2
3
4
5
6
7

注意:

  • 从来没有被添加到版本库就被删除的文件,是无法恢复的!
  • 如果想删除文件夹,使用-r参数,例如git rm -r 文件夹​

‍

# git rm --cached

使用 git rm --cached,可以使一个文件脱离版本控制 演示:

首选准备数据

$ echo "test" > test.txt
$ git add test.txt
$ git commit -m "add test.txt"
1
2
3

‍

然后使用git rm --cached test.txt​

$ git rm --cached test.txt
rm 'test.txt'
1
2

‍

‍

查看仓库状态,可以看到删除文件这个修改已经添加到暂存区了,并且test.txt 目前是Untracked

$ git st
On branch master
Your branch is ahead of 'gitee/master' by 7 commits.
  (use "git push" to publish your local commits)

Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
        deleted:    test.txt

Untracked files:
  (use "git add <file>..." to include in what will be committed)
        test.txt
1
2
3
4
5
6
7
8
9
10
11
12

‍

但是工作区里的文件还在:

$ ll
drwxr-xr-x 1 peterjxl 197121  0  1月 11 07:37 1-diffAndPath/
drwxr-xr-x 1 peterjxl 197121  0  1月 14 07:19 2-versionControl/
-rw-r--r-- 1 peterjxl 197121  6  1月 14 11:58 test.txt
1
2
3
4

‍

我们提交下,结束演示

$ git commit -m "delete test.txt by git rm --chched"
1

‍

# 小结

小结:本文我们主要介绍了如下内容:

  • 版本库,工作区和暂存区的概念,这对理解Git非常重要。
  • Git是管理修改的,添加文件、修改文件内容和删除文件都是一种修改
  • 撤销修改 git restore <file>...​, git restore --staged <file>...​
在GitHub上编辑此页 (opens new window)
上次更新: 2023/4/29 21:37:53
版本管理
远程仓库

← 版本管理 远程仓库→

Theme by Vdoing | Copyright © 2022-2023 粤ICP备2022067627号-1 粤公网安备 44011302003646号
  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式