码迷,mamicode.com
首页 > 其他好文 > 详细

Git权威指南学习笔记(二)Git暂存区

时间:2014-06-14 09:16:08      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   color   

如下图所示:

左侧为工作区,是我们的工作目录。

右侧为版本库,其中:

index标记的是暂存区(stage),所处目录为.git/index,记录了文件的状态和变更信息。

master标记的是master分支所代表的目录树。HEAD指向master分支。

objects标记的是Git的对象库,所处目录为.git/objects,文件索引建立了文件和对象库中对象实体之间的映射关系。

bubuko.com,布布扣


通过该图我们可以清晰地看出add,commit等命令的转化关系。下面通过git diff和git status两条命令来理清它们之间的关系。

1.假设welcome.txt文件为空,我们首先在该文件中加入一行"1 Hello",并通过git add和git commit提交到版本库中:

$ git add welcome.txt 
$ git commit -m "1 Hello"

2.在welcome.txt文件中添加第二行"2 Git",只执行git add命令,不执行git commit:

$ git add welcome.txt

执行git status -s命令,输出如下:

bubuko.com,布布扣

可以看到第一列的M是绿色的,表示对于welcome.txt文件,master分支中的文件和暂存区中的文件内容不一致。

第二列的M不存在,表示对于welcome.txt文件,工作区中的文件和暂存区中的文件一致,明显是因为执行了git add操作使得工作区和暂存区中的文件内容同步。

3.在welcome.txt文件中添加第三行"3 Hello Git",不执行git add命令。

输入git status -s,输出如下:

bubuko.com,布布扣

可以看到多了第二列的M,而且是红色的,表示对于welcome.txt文件,工作区中的文件和暂存区中的文件内容不一致。

4.Git diff魔法

(1)暂存区和工作区比较:git diff

$ git diff
diff --git a/welcome.txt b/welcome.txt
index 671036a..d6a88bb 100644
--- a/welcome.txt
+++ b/welcome.txt
@@ -1,2 +1,3 @@
 1 Hello
-2 Git
\ No newline at end of file
+2 Git
+3 Hello Git
\ No newline at end of file

(2)HEAD和暂存区比较:git diff --cached
$ git diff --cached
diff --git a/welcome.txt b/welcome.txt
index f6abfb2..671036a 100644
--- a/welcome.txt
+++ b/welcome.txt
@@ -1 +1,2 @@
-1 Hello
\ No newline at end of file
+1 Hello
+2 Git
\ No newline at end of file
(3)HEAD和工作区比较:git diff HEAD
$ git diff HEAD
diff --git a/welcome.txt b/welcome.txt
index f6abfb2..d6a88bb 100644
--- a/welcome.txt
+++ b/welcome.txt
@@ -1 +1,3 @@
-1 Hello
\ No newline at end of file
+1 Hello
+2 Git
+3 Hello Git
\ No newline at end of file


结合上面的图来看就不难理解了。

最后,给出原书作者的忠告:不要使用git commit -a,原因是这会让我们失去对提交内容进行控制的能力。


Git权威指南学习笔记(二)Git暂存区,布布扣,bubuko.com

Git权威指南学习笔记(二)Git暂存区

标签:style   class   blog   code   http   color   

原文地址:http://blog.csdn.net/jymn_chen/article/details/30677159

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!