Skip to content

Commit

Permalink
Fix html reserved lt and gt
Browse files Browse the repository at this point in the history
  • Loading branch information
lbragaglia committed Mar 2, 2016
1 parent 6434ee7 commit b4819b6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions guide/challenges-zhtw/remote_control.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,15 @@ <h3>&#x524D;&#x5F80;&#x4E0B;&#x4E00;&#x500B;&#x95DC;&#x5361;&#xFF1A;</h3><code>g
<h2>&#x6487;&#x6B65;</h2>
<ul>
<li><strong>&#x65B0;&#x589E; <n><span class="superscript">&#x9060;&#x7AEF;</span>remote</n> &#x9023;&#x7D50;</strong></li>
<code>$ git remote add &lt;REMOTENAME&gt; <url></url></code>
<code>$ git remote add &lt;REMOTENAME&gt; &lt;URL&gt;</code>
<li><strong>&#x5E6B;&#x4E00;&#x500B; <n><span class="superscript">&#x9060;&#x7AEF;</span>remote</n> &#x8A2D;&#x5B9A;&#x4F4D;&#x5740;</strong></li>
<code>$ git remote set-url &lt;REMOTENAME&gt; <url></url></code>
<code>$ git remote set-url &lt;REMOTENAME&gt; &lt;URL&gt;</code>
<li><strong><v><span class="superscript">&#x6536;&#x53D6;</span>Pull</v> <n><span class="superscript">&#x9060;&#x7AEF;</span>remote</n> &#x7684;&#x7A0B;&#x5F0F;</strong></li>
<code>$ git pull &lt;REMOTENAME&gt; &lt;BRANCHNAME&gt;</code>
<li><strong>&#x770B;&#x4F60;&#x6709;&#x54EA;&#x4E9B; <n><span class="superscript">&#x9060;&#x7AEF;</span>remote</n> &#x9023;&#x7D50;</strong></li>
<code>$ git remote -v</code>
<li><strong><v><span class="superscript">&#x63A8;&#x9001;</span>Push</v> &#x96FB;&#x8166;&#x4E0A;&#x7684;&#x7A0B;&#x5F0F;&#x5230; <n><span class="superscript">&#x9060;&#x7AEF;</span>remote</n></strong></li>
<code>$ git push &lt;REMOTENAME&gt; <branch></branch></code>
<code>$ git push &lt;REMOTENAME&gt; &lt;BRANCH&gt;</code>
</ul>
</div>

Expand Down
8 changes: 4 additions & 4 deletions guide/dictionary.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ <h2>Remote</h2>
<li><strong>Add remote connections</strong></li>
<code>$ git remote add &#60;REMOTENAME&#62; &#60;URL&#62;</code>
<li><strong>Set a URL to a remote</strong></li>
<code>$ git remote set-url &#60;REMOTENAME&#62; <URL></code>
<code>$ git remote set-url &#60;REMOTENAME&#62; &#60;URL&#62;</code>
<li><strong>View remote connections</strong></li>
<code>$ git remote -v</code>
</ul>
Expand All @@ -96,9 +96,9 @@ <h2>Pull</h2>
<div id="git-tips">
<ul>
<li><strong>Pull in changes</strong></li>
<code>$ git pull &#60;REMOTENAME&#62; &#60;BRANCHNAME&#62;</code>
<code>$ git pull</code>
<li><strong>Pull in changes from a remote branch</strong></li>
<code>$ git pull <REMOTENAME> <REMOTEBRANCH></code>
<code>$ git pull &#60;REMOTENAME&#62; &#60;REMOTEBRANCH&#62;</code>
<li><strong>See changes to the remote before you pull in</strong></li>
<code>$ git fetch --dry-run</code>
</ul>
Expand All @@ -108,7 +108,7 @@ <h2>Push &#38; Merge</h2>
<div id="git-tips">
<ul>
<li><strong>Push changes</strong></li>
<code>$ git push &#60;REMOTENAME&#62; <BRANCH></code>
<code>$ git push &#60;REMOTENAME&#62; &#60;BRANCHNAME&#62;</code>
<li><strong>Merge a branch into current branch</strong></li>
<code>$ git merge &#60;BRANCHNAME&#62;</code>
</ul>
Expand Down
6 changes: 3 additions & 3 deletions guide/raw-content-zhtw/5_remote_control.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,14 @@ <h3>前往下一個關卡:</h3><code>git-it</code>
<h2>撇步</h2>
<ul>
<li><strong>新增 <n>remote</n> 連結</strong></li>
<code>$ git remote add &#60;REMOTENAME&#62; <URL></code>
<code>$ git remote add &#60;REMOTENAME&#62; &#60;URL&#62;</code>
<li><strong>幫一個 <n>remote</n> 設定位址</strong></li>
<code>$ git remote set-url &#60;REMOTENAME&#62; <URL></code>
<code>$ git remote set-url &#60;REMOTENAME&#62; &#60;URL&#62;</code>
<li><strong><v>Pull</v> <n>remote</n> 的程式</strong></li>
<code>$ git pull &#60;REMOTENAME&#62; &#60;BRANCHNAME&#62;</code>
<li><strong>看你有哪些 <n>remote</n> 連結</strong></li>
<code>$ git remote -v</code>
<li><strong><v>Push</v> 電腦上的程式到 <n>remote</n></strong></li>
<code>$ git push &#60;REMOTENAME&#62; <BRANCH></code>
<code>$ git push &#60;REMOTENAME&#62; &#60;BRANCH&#62;</code>
</ul>
</div>

0 comments on commit b4819b6

Please sign in to comment.