赞
踩
Git和其他版本控制系统如SVN的一个不同之处就是有暂存区的概念。
staged changes:已更改的东西
unstaged changes:未更改的东西
stage 暂存区
就是你在电脑里能看到的目录,比如我的learngit文件夹就是一个工作区:

工作区有一个隐藏目录.git,这个不算工作区,而是Git的版本库。
Git的版本库里存了很多东西,其中最重要的就是称为stage(或者叫index)的暂存区,还有Git为我们自动创建的第一个分支master,以及指向master的一个指针叫HEAD。

前面讲了我们把文件往Git版本库里添加的时候,是分两步执行的:
第一步是用git add把文件添加进去,实际上就是把文件修改添加到暂存区;
第二步是用git commit提交更改,实际上就是把暂存区的所有内容提交到当前分支。
因为我们创建Git版本库时,Git自动为我们创建了唯一一个master分支,所以,现在,git commit就是往master分支上提交更改。
你可以简单理解为,需要提交的文件修改通通放到暂存区,然后,一次性提交暂存区的所有修改。
新创建一个文件,查看当前缓存区的工作状态,发现没有添加,将两个文件都提交后,再次查看缓存区的工作状态。
$ git status On branch master Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git checkout -- <file>..." to discard changes in working directory) modified: readme.txt Untracked files: (use "git add <file>..." to include in what will be committed) LICENSE.txt no changes added to commit (use "git add" and/or "git commit -a") Administrator@WIN-E2URN8GKKHJ MINGW64 ~/Desktop/learngit (master) $ git add readme.txt Administrator@WIN-E2URN8GKKHJ MINGW64 ~/Desktop/learngit (master) $ git add LICENSE.txt Administrator@WIN-E2URN8GKKHJ MINGW64 ~/Desktop/learngit (master) $ git status On branch master Changes to be committed: (use "git reset HEAD <file>..." to unstage) new file: LICENSE.txt modified: readme.txt
重新提交到Git后,再次查看暂存区工作状态,舒服了!
$ git commit -m "understand how stage works"
[master 0b5e9b3] understand how stage works
2 files changed, 2 insertions(+), 1 deletion(-)
create mode 100644 LICENSE.txt
Administrator@WIN-E2URN8GKKHJ MINGW64 ~/Desktop/learngit (master)
$ git status
On branch master
nothing to commit, working directory clean
暂存区是Git非常重要的概念,弄明白了暂存区,就弄明白了Git的很多操作到底干了什么。
红色:表示的是unstaged changes,目前还没有被添加到缓存区stage绿色:表示的是staged changes,表示已经添加到了缓存区,等待提交
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。