标签:
Git 中存在的三种状态:工作目录、索引和对象库。
Git
目录中存在两个文件,且经过一次提交,所以现在是同步的。
对 file1编辑,更改为quue。状态如下:
file1
quue
接下来执行git add file1将其添加进索引库中。
git add file1
提交:
SHA1
master
master HEAD
Git 中对象模型和文件的详细视图
原文地址:http://blog.csdn.net/yapian8/article/details/44756141