From 58b735e7fc56434ed91589cb43b71abbdd82c188 Mon Sep 17 00:00:00 2001 From: Soon Van Date: Sat, 15 Dec 2012 15:28:59 -0500 Subject: [PATCH] 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

- 文档   - + 文档   + git diff @@ -449,4 +449,4 @@ index bb86f00..192151c 100644

就是这样了! 请阅读 -《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 推送你的新分支与数据到某个远端仓库