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

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