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

@@ -315,6 +315,7 @@ From github.com:schacon/hw
<p>If you have more than one remote repository, you can either fetch from specific
ones by running <code>git fetch [alias]</code> or you can tell Git to synchronize
with all of your remotes by running <code>git fetch --all</code>.
</p>
<p class="nutshell">
<b>In a nutshell</b> you run <code>git fetch [alias]</code> to synchronize your
@@ -358,7 +359,7 @@ To git@github.com:schacon/hw.git
what I have committed and all of its history.</p>
<p>What if I have a topic branch like the 'erlang' branch we created earlier
and I just want to share that? You can just push that branch instead.
and I just want to share that? You can just push that branch instead.</p>
<pre>
<b>$ git push github erlang</b>
@@ -403,6 +404,7 @@ fast-forwards' section of 'git push --help' for details.
<p>You can fix this by running <code>git fetch github; git merge github/master</code>
and then pushing again.
</p>
<p class="nutshell">
<b>In a nutshell</b> you run <code>git push [alias] [branch]</code> to update a