From 4676a83064e83f5ced867ebb5b7ffef80a597d4d Mon Sep 17 00:00:00 2001
From: Soon Van
diff --git a/_layouts/zh_reference.html b/_layouts/zh_reference.html
index e26130b..7bb3837 100755
--- a/_layouts/zh_reference.html
+++ b/_layouts/zh_reference.html
@@ -27,7 +27,7 @@
From d2b7dcee9e6c3dcd569a9e52cf632c75c23477e8 Mon Sep 17 00:00:00 2001
From: Soon Van
- $ wget http://sample.com/project.2010-06-01.zip
+ $ wget http://example.com/project.2010-06-01.zip
$ unzip project.2010-06-01.zip
$ cp -R project.2010-06-01 project-my-copy
$ cd project-my-copy
diff --git a/zh/index.html b/zh/index.html
index 693c844..4a74633 100644
--- a/zh/index.html
+++ b/zh/index.html
@@ -10,7 +10,7 @@ layout: zh_reference
每个章节都有到下一个章节的链接,所以本手册也可以当作一个入门指导。
- 每个页面还有一个深度 Git 文档阅读的链接,比如官方的使用手册页面或者 《Pro Git》
+ 每个页面还有一个深度 Git 文档阅读的链接,比如官方的使用手册页面或者 《Pro Git》
书中的相关章节,以便于你学习了解更多的 Git 命令。首先,我们要从如何以 Git 的思维方式管理源代码开始。
@@ -47,7 +47,7 @@ layout: zh_reference
- $ wget http://sample.com/project.2010-06-01.zip
+ $ wget http://example.com/project.2010-06-01.zip
$ unzip project.2010-06-01.zip
$ cp -R project.2010-06-01 project-my-copy
$ cd project-my-copy
From 58b735e7fc56434ed91589cb43b71abbdd82c188 Mon Sep 17 00:00:00 2001
From: Soon Van
Date: Sat, 15 Dec 2012 15:28:59 -0500
Subject: [PATCH 3/3] Update progit, kernel links to git-scm in Chinese
translation
---
zh/basic/index.html | 26 +++++++++++++-------------
zh/branching/index.html | 26 +++++++++++++-------------
zh/creating/index.html | 8 ++++----
zh/inspect/index.html | 12 ++++++------
zh/remotes/index.html | 10 +++++-----
5 files changed, 41 insertions(+), 41 deletions(-)
diff --git a/zh/basic/index.html b/zh/basic/index.html
index 4d755dd..e3ffd13 100644
--- a/zh/basic/index.html
+++ b/zh/basic/index.html
@@ -5,7 +5,7 @@ layout: zh_reference
- 书
+ 书
基本快照
@@ -30,8 +30,8 @@ layout: zh_reference
- 文档
- 书
+ 文档
+ 书
git add
添加文件到缓存
@@ -105,8 +105,8 @@ layout: zh_reference
- 文档
- 书
+ 文档
+ 书
git status
查看你的文件在工作目录与缓存的状态
@@ -178,8 +178,8 @@ layout: zh_reference
- 文档
- 书
+ 文档
+ 书
git diff
显示已写入缓存与已修改但尚未写入缓存的改动的区别
@@ -364,8 +364,8 @@ index 2aabb6e..2ae9ba4 100644
- 文档
- 书
+ 文档
+ 书
git commit
记录缓存内容的快照
@@ -516,8 +516,8 @@ nothing to commit (working directory clean)
- 文档
- 书
+ 文档
+ 书
git reset HEAD
取消缓存已缓存的内容
@@ -595,8 +595,8 @@ M hello.rb
- 文档
- 书
+ 文档
+ 书
git rm
将文件从缓存区移除
diff --git a/zh/branching/index.html b/zh/branching/index.html
index 1c7e898..c5d8295 100644
--- a/zh/branching/index.html
+++ b/zh/branching/index.html
@@ -5,7 +5,7 @@ layout: zh_reference
- 书
+ 书
分支与合并
@@ -29,8 +29,8 @@ layout: zh_reference
- 文档
- 书
+ 文档
+ 书
git branch
列出、创建与管理工作上下文
@@ -40,8 +40,8 @@ layout: zh_reference
- 文档
- 书
+ 文档
+ 书
git checkout
切换到新的分支上下文
@@ -59,7 +59,7 @@ layout: zh_reference
没有参数时,git branch 会列出你在本地的分支。你所在的分支的行首会有个星号作标记。
- 如果你开启了彩色模式,当前分支会用绿色显示。
+ 如果你开启了彩色模式,当前分支会用绿色显示。
@@ -199,8 +199,8 @@ Deleted branch testing (was 78b2670).
- docs
- book
+ docs
+ book
git merge
将分支合并到你的当前分支
@@ -380,7 +380,7 @@ nearly every programming language.
你可以看到,Git 在产生合并冲突的地方插入了标准的与 Subversion 很像的合并冲突标记。
轮到我们去解决这些冲突了。在这里我们就手动把它解决。如果你要 Git 打开一个图形化的合并工具,
- 可以看看 git 合并工具
+ 可以看看 git 合并工具
(比如 kdiff3、emerge、p4merge 等)。
@@ -428,8 +428,8 @@ M README
- 文档
- 书
+ 文档
+ 书
git log
显示一个分支中提交的更改记录
@@ -619,8 +619,8 @@ ab5ab4c added erlang
- 文档
- 书
+ 文档
+ 书
git tag
给历史记录中的某个重要的一点打上标签
diff --git a/zh/creating/index.html b/zh/creating/index.html
index 17c0da4..ac69689 100644
--- a/zh/creating/index.html
+++ b/zh/creating/index.html
@@ -19,8 +19,8 @@ layout: zh_reference
- 文档
- 书
+ 文档
+ 书
git init
将一个目录初始化为 Git 仓库
@@ -67,8 +67,8 @@ Initialized empty Git repository in /opt/konichiwa/.git/
- 文档
- 书
+ 文档
+ 书
git clone
复制一个 Git 仓库,以上下其手
diff --git a/zh/inspect/index.html b/zh/inspect/index.html
index 286f292..9851a0d 100644
--- a/zh/inspect/index.html
+++ b/zh/inspect/index.html
@@ -5,7 +5,7 @@ layout: zh_reference
- 书
+ 书
检查与比较
@@ -26,8 +26,8 @@ layout: zh_reference
- 文档
- 书k
+ 文档
+ 书k
git log
过滤你的提交历史记录
@@ -293,8 +293,8 @@ Date: Fri Jun 4 12:58:53 2010 +0200
就是这样了! 请阅读
-《Pro Git》 以获得更多信息。
+《Pro Git》 以获得更多信息。
diff --git a/zh/remotes/index.html b/zh/remotes/index.html
index 1dc2ec7..dcd59d2 100644
--- a/zh/remotes/index.html
+++ b/zh/remotes/index.html
@@ -5,7 +5,7 @@ layout: zh_reference
- 书
+ 书
分享与更新项目
@@ -39,7 +39,7 @@ layout: zh_reference
文档
- 书
+ 书
git remote
罗列、添加和删除远端仓库别名
@@ -148,7 +148,7 @@ github git@github.com:schacon/hw.git (push)
文档
- 书
+ 书
git fetch
从远端仓库下载新分支与数据
@@ -159,7 +159,7 @@ github git@github.com:schacon/hw.git (push)
文档
- 书
+ 书
git pull
从远端仓库提取数据并尝试合并到当前分支
@@ -234,7 +234,7 @@ From github.com:schacon/hw
文档
- 书
+ 书
git push
推送你的新分支与数据到某个远端仓库