当前位置:   article > 正文

Git使用——工作区和暂存区_git暂存区和工作区

git暂存区和工作区

目录

一.工作区(Working Directory)

二.版本库(Repository)


一.工作区(Working Directory)

工作区指的是电脑中的目录。

二.版本库(Repository)

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

版本库包含很多东西,最重要的是被称作stage的暂存区。Git为我们自动创建第一个分支master和指向master的HEAD指针。

将文件添加到Git版本库分为两步:

1.git add添加文件,把文件添加到暂存区。

2.git commit提交文件,把暂存区的所有内容提交到当前分支。

下面举例说明

在工作区新增一个License文本文件

  1. # 查看仓库状态
  2. $ git status
  3. # 查询结果
  4. On branch master
  5. Untracked files:
  6. (use "git add <file>..." to include in what will be committed)
  7. License
  8. nothing added to commit but untracked files present (use "git add" to track)

License文件还没有被添加,处于untracked状态。

  1. # 添加License文件
  2. $ git status
  3. # 仓库状态
  4. On branch master
  5. Changes to be committed:
  6. (use "git restore --staged <file>..." to unstage)
  7. new file: License

暂存区状态

  1. # 提交文件
  2. $ git commit -m "add License"
  3. # 提交结果
  4. [master 28c1971] add License
  5. 1 file changed, 1 insertion(+)
  6. create mode 100644 License
  7. # 仓库状态
  8. $ git status
  9. On branch master
  10. nothing to commit, working tree clean

此时版本库的暂存区是空的。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/860882
推荐阅读
相关标签
  

闽ICP备14008679号