第三章
- git --version查看版本号
- git --help查看帮助文档
- 裸双破折号分离参数 git diff -w master origin – tools/Makefile
- 将当前目录或任何目录转化为Git版本库 git init
初始化之后项目目录中,有名为.git的文件 - git status 查看git状态
- git commit 提供日志消息和作者
git commit -m “Initial content of public-html” -author=“John” - 建立基本环境和配置选项
git config user.name “John”
git config user.email “xxx@example.com” - 查看提交历史 git log
- 查看提交的详细信息git show [提交码]
git show没提交码时,只显示最近一次提交的详细信息
git show -branch 当前开发分支简介单行摘要
git show -branch --more=10 额外10个版本 - 查看提交差异 git diff 版本号1 版本号2
- 删除文件git rm [fileName]
例如:git rm poem.html
git commit -m “Remove a poem” - 文件重命名:git mv [file1] [file2]
- git配置文件:
(1).git/config 版本库特定配置
(2)~/.gitconfig用户特定配置
(3)/etc/gitconfig 系统范围内配置 - 建作者名和email,config --global 给/.gitconfig文件中user.name和user.email赋值
git config --global user.name “John”
git config --global user.email “xxx@example.com” - 查找所有变量的设置值
git config -l - 查看配置文件内容 cat .git/config
- 移除配置 git config --unset --global user.email
第四章
- git主要数据结构
(1)对象库
(2)索引 - Git对象类型:
(1)块(blob)
(2)目录树(tree)
(3)提交(commit)
(4)标签(tag)
对象类型 | 解释 |
---|---|
块 | 文件的每一个版本表示一块,一个blob保存一个文件数据 |
目录树 | 一层目录信息,记录blob标识符、路径名,在一个目录中所有文件的一些元数据。 |
提交 | 提交对象,每一次变化的元数据,包括作者、提交者、提交日期、日志消息。 |
标签 | 一个标签对象分配一个任意的一个特定对象,通常是一个提交对象。 |
-
索引:临时动态二进制文件,描述某个时刻整体结构的一个版本。
索引会记录和保存那些变更,直到已准备好提交。 -
添加一个包含一个文件的新子目录,如下图所示:
-
SHA1=散列码=对象ID