Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/git/git-reference.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/zh
diff options
context:
space:
mode:
authorSoon Van <cog@randomecho.com>2012-12-23 01:26:33 +0400
committerSoon Van <cog@randomecho.com>2012-12-23 01:26:33 +0400
commit48532993de55beb1315104de4dd8d21cf34a3f59 (patch)
treed4e89aa0707cd5ab11ac541dc2def55e2bce6541 /zh
parenteecddb956fc2a6af66056ebf9ad42f81d20c5b86 (diff)
Pair up dangling paragraph tags; Make sure all text at least in P
Closing P tags are missing or mistyped for another letter. Other chunks of text need to be wrapped in P tags to fall inline with rest of page and not run with such wild abandon.
Diffstat (limited to 'zh')
-rw-r--r--zh/branching/index.html3
-rw-r--r--zh/creating/index.html6
-rw-r--r--zh/inspect/index.html2
3 files changed, 7 insertions, 4 deletions
diff --git a/zh/branching/index.html b/zh/branching/index.html
index c5d8295..c706790 100644
--- a/zh/branching/index.html
+++ b/zh/branching/index.html
@@ -79,6 +79,7 @@ $ git branch
</h4>
<p>我们动手创建一个分支,并切换过去。执行 <code>git branch (branchname)</code> 即可。
+ </p>
<pre>
$ git branch testing
@@ -334,7 +335,7 @@ HiWorld.hello
<p>那么,Git 合并很有魔力,我们再也不用处理合并冲突了,对吗?不太确切。
不同分支中修改了相同区块的代码,电脑自己猜不透神马的情况下,冲突就摆在我们面前了。
我们看看两个分支中改了同一行代码的例子。
- <p>
+ </p>
<pre>
<b>$ git branch</b>
diff --git a/zh/creating/index.html b/zh/creating/index.html
index ac69689..2cf32d6 100644
--- a/zh/creating/index.html
+++ b/zh/creating/index.html
@@ -27,7 +27,8 @@ layout: zh_reference
</h2>
<div class="block">
- 在目录中执行 <code>git init</code>,就可以创建一个 Git 仓库了。比如,我们恰好有个目录,里头有些许文件,如下:
+ <p>在目录中执行 <code>git init</code>,就可以创建一个 Git 仓库了。比如,我们恰好有个目录,里头有些许文件,如下:
+ </p>
<pre>
<b>$ cd konichiwa</b>
<b>$ ls</b>
@@ -54,7 +55,8 @@ Initialized empty Git repository in /opt/konichiwa/.git/
. .. .git README hello.rb
</pre>
- 恭喜,现在你就有了一个 Git 仓库的架子,可以开始快照你的项目了。
+ <p>恭喜,现在你就有了一个 Git 仓库的架子,可以开始快照你的项目了。
+ </p>
<p class="nutshell">
<strong>简而言之</strong>,用 <code>git init</code> 来在目录中创建新的 Git 仓库。
diff --git a/zh/inspect/index.html b/zh/inspect/index.html
index 9851a0d..0c5ae53 100644
--- a/zh/inspect/index.html
+++ b/zh/inspect/index.html
@@ -437,7 +437,7 @@ index bb86f00..192151c 100644
2 files changed, 9 insertions(+), 0 deletions(-)
</pre>
- <p>当然,我会推荐简单点的那个。</>
+ <p>当然,我会推荐简单点的那个。</p>
<p class="nutshell">