From 5db0a7c1eeee7b69b86c91256856123ce0ae1e3b Mon Sep 17 00:00:00 2001 From: hfpf Date: Tue, 19 Dec 2017 19:24:43 +0800 Subject: [PATCH 1/8] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=A4=9A=E4=BD=99?= =?UTF-8?q?=E7=9A=84=E8=BF=9E=E8=AF=8D=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 02-git-solo/070-git-basic.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-git-solo/070-git-basic.rst b/02-git-solo/070-git-basic.rst index 68fd08817..81ed84ca5 100644 --- a/02-git-solo/070-git-basic.rst +++ b/02-git-solo/070-git-basic.rst @@ -717,7 +717,7 @@ Git基本操作 # main.o # version.h -编译的目标文件和以及从模板生成的头文件出现在了Git的状态输出中,这些文件\ +编译的目标文件和从模板生成的头文件出现在了Git的状态输出中,这些文件\ 会对以后的工作造成干扰。当写了新的源代码文件需要添加到版本库中时,因为这\ 些干扰文件的存在,不得不一一将这些干扰文件排除在外。更为严重的是,如果不\ 小心执行\ :command:`git add .`\ 或者\ :command:`git add -A`\ 命令会将编\ From e9fa3de1fb0463708974a37faf7502d267b16717 Mon Sep 17 00:00:00 2001 From: hfpf Date: Wed, 20 Dec 2017 10:04:15 +0800 Subject: [PATCH 2/8] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=BC=95=E5=8F=B7?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 03-git-harmony/030-git-tag.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03-git-harmony/030-git-tag.rst b/03-git-harmony/030-git-tag.rst index 2780f1932..a01e0dad9 100644 --- a/03-git-harmony/030-git-tag.rst +++ b/03-git-harmony/030-git-tag.rst @@ -103,7 +103,7 @@ Git里程碑 :: - $ git tag -l jx/v2* + $ git tag -l 'jx/v2*' jx/v2.0 jx/v2.1 jx/v2.2 From 3358f3b63c1184bec7c98a27316c40921734a8e0 Mon Sep 17 00:00:00 2001 From: hfpf Date: Thu, 21 Dec 2017 10:31:51 +0800 Subject: [PATCH 3/8] =?UTF-8?q?=E8=AF=AD=E6=B3=95=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 02-git-solo/090-back-to-future.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-git-solo/090-back-to-future.rst b/02-git-solo/090-back-to-future.rst index ad9779f46..243e6b93b 100644 --- a/02-git-solo/090-back-to-future.rst +++ b/02-git-solo/090-back-to-future.rst @@ -54,7 +54,7 @@ Git提供了“悔棋”的操作,甚至因为“单步悔棋”是如此经 src/hello.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) -最新一次的提交是的确是在上一章使用\ ``qgit``\ 进行的提交,但这和提交内容\ +最新一次的提交确是在上一章使用\ ``qgit``\ 进行的提交,但这和提交内容\ 无关,因此需要改掉这个提交的提交说明。使用下面的命令即可做到。 :: From 6ef872199840277d36371ff5b1e42e0fd4e16167 Mon Sep 17 00:00:00 2001 From: hfpf Date: Thu, 21 Dec 2017 10:52:41 +0800 Subject: [PATCH 4/8] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=AC=94=E8=AF=AF?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 02-git-solo/090-back-to-future.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-git-solo/090-back-to-future.rst b/02-git-solo/090-back-to-future.rst index 243e6b93b..dd0f88fb7 100644 --- a/02-git-solo/090-back-to-future.rst +++ b/02-git-solo/090-back-to-future.rst @@ -160,7 +160,7 @@ MQ插件)。Git因为有了强大的重置命令,可以悔棋任意多次。 个开发工程师领受某个特性开发的任务,于是在本地版本库进行了一系列开发、测\ 试、修补、再测试的流程,最终特性功能开发完毕后可能在版本库中留下了多次提\ 交。在将本地版本库改动推送(PUSH)到团队协同工作的核心版本库时,这个开发\ -人员就想用多步悔棋的操作,将多个试验性的提及合为一个完整的提交。 +人员就想用多步悔棋的操作,将多个试验性的提交合为一个完整的提交。 以DEMO版本库为例,看看版本库最近的三次提交。 From d6f924cf6d6522fa6d406ce74bc2f9f6286742ce Mon Sep 17 00:00:00 2001 From: hfpf Date: Fri, 22 Dec 2017 14:35:30 +0800 Subject: [PATCH 5/8] =?UTF-8?q?=E9=94=99=E5=88=AB=E5=AD=97=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 02-git-solo/090-back-to-future.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-git-solo/090-back-to-future.rst b/02-git-solo/090-back-to-future.rst index dd0f88fb7..9be38f8b3 100644 --- a/02-git-solo/090-back-to-future.rst +++ b/02-git-solo/090-back-to-future.rst @@ -610,7 +610,7 @@ Git这一台“时光机”也有这样的能力,或者说也会具有这样 :command:`git rebase --skip`\ 跳过此提交。或者执行\ :command:`git rebase --abort`\ 就此终止变基操作切换到变基前的分支上。 -很显然为了执行将E和F提交跳过提价D,“嫁接”到C提交上。可以如此执行变基命令: +很显然为了执行将E和F提交跳过提交D,“嫁接”到C提交上。可以如此执行变基命令: :: From 0a49878c439bb19156ea4b1628f22b530dcd59d8 Mon Sep 17 00:00:00 2001 From: jay-sphere <39045149+jay-sphere@users.noreply.github.com> Date: Tue, 9 Jul 2019 18:06:15 +0800 Subject: [PATCH 6/8] Update 030-head-master-commit-refs.rst Fixed typo --- 02-git-solo/030-head-master-commit-refs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-git-solo/030-head-master-commit-refs.rst b/02-git-solo/030-head-master-commit-refs.rst index 55084c00a..3fdb99827 100644 --- a/02-git-solo/030-head-master-commit-refs.rst +++ b/02-git-solo/030-head-master-commit-refs.rst @@ -43,7 +43,7 @@ Git对象库探秘 * \ ``parent a0c641e92b10d8bcca1ed1bf84ca80340fdefee6`` - 这是本地提交的父提交(上一次提交)。 + 这是本次提交的父提交(上一次提交)。 研究Git对象ID的一个重量级武器就是\ :command:`git cat-file`\ 命令。用下面\ 的命令可以查看一下这三个ID的类型。 From ec106fac8a9e178e71c0c4aab4363748b136c8ed Mon Sep 17 00:00:00 2001 From: hfpf Date: Tue, 19 Dec 2017 19:24:43 +0800 Subject: [PATCH 7/8] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=A4=9A=E4=BD=99?= =?UTF-8?q?=E7=9A=84=E8=BF=9E=E8=AF=8D=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 02-git-solo/070-git-basic.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-git-solo/070-git-basic.rst b/02-git-solo/070-git-basic.rst index 68fd08817..81ed84ca5 100644 --- a/02-git-solo/070-git-basic.rst +++ b/02-git-solo/070-git-basic.rst @@ -717,7 +717,7 @@ Git基本操作 # main.o # version.h -编译的目标文件和以及从模板生成的头文件出现在了Git的状态输出中,这些文件\ +编译的目标文件和从模板生成的头文件出现在了Git的状态输出中,这些文件\ 会对以后的工作造成干扰。当写了新的源代码文件需要添加到版本库中时,因为这\ 些干扰文件的存在,不得不一一将这些干扰文件排除在外。更为严重的是,如果不\ 小心执行\ :command:`git add .`\ 或者\ :command:`git add -A`\ 命令会将编\ From b47d54aa18b8e44563a06662591d2549b448dec5 Mon Sep 17 00:00:00 2001 From: fxz <75552222+springboot4@users.noreply.github.com> Date: Sun, 9 Jul 2023 15:40:53 +0800 Subject: [PATCH 8/8] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E9=94=99=E5=88=AB?= =?UTF-8?q?=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 03-git-harmony/010-protocol.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03-git-harmony/010-protocol.rst b/03-git-harmony/010-protocol.rst index 1aaaf8db1..1644e1903 100644 --- a/03-git-harmony/010-protocol.rst +++ b/03-git-harmony/010-protocol.rst @@ -319,7 +319,7 @@ Git客户端还要去访问文件\ :file:`.git/objects/info/packs`\ 以获得打 那么如何才能成功推送呢?一个不见得正确的解决方案称为:\ **强制推送**\ 。 在推送命令的后面使用\ ``-f``\ 参数可以进行强制推送,即使是非快进式的推送\ -也会成功执行。用户user2执行强制推送,会强制涮新服务器中的版本。 +也会成功执行。用户user2执行强制推送,会强制刷新服务器中的版本。 ::