1
0

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.
This commit is contained in:
Soon Van
2012-12-22 16:26:33 -05:00
parent eecddb956f
commit 48532993de
7 changed files with 25 additions and 12 deletions

View File

@@ -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>

View File

@@ -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 仓库。

View File

@@ -437,7 +437,7 @@ index bb86f00..192151c 100644
2 files changed, 9 insertions(+), 0 deletions(-)
</pre>
<p>当然,我会推荐简单点的那个。</>
<p>当然,我会推荐简单点的那个。</p>
<p class="nutshell">