Skip to content

Commit

Permalink
Update challenge text
Browse files Browse the repository at this point in the history
  • Loading branch information
jlord committed Jul 8, 2016
1 parent 1d815ce commit d9bf399
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions challenge-content/6_forks_and_clones.html
Expand Up @@ -46,15 +46,17 @@ <h3>Connect to the Original Repository</h3>

<p><code class="shell">git remote add upstream https://github.com/jlord/patchwork.git</code></p>

<p>To be sure you have the correct remotes set up, type <code>git remote -v</code> to list out the addresses you have stored. You should have an 'origin' remote with <em>your fork's</em> address and then an 'upstream' remote with the address to the original, with the URL noted above in this step.</p>
<p>To be sure you have the correct remotes set up, type <code>git remote -v</code> to list out the addresses you have stored. <b>You should have an 'origin' remote with your fork's address and then an 'upstream' remote with the address to the original, the URL noted above in this step.</b></p>
</div>

{{{ verify_directory_button }}}

<div class="chal-tip grey-border border-box">
<ul class="no-list-style">
<li><strong>Add remote connections</strong></li>
<li><strong>Add a remote</strong></li>
<li><code class="shell">git remote add &#60;REMOTENAME&#62; &#60;URL&#62;</code></li>
<li><strong>Change a remote URL</strong></li>
<li><code class="shell">git remote set-url &#60;REMOTENAME&#62; &#60;URL&#62;</code></li>
<li><strong>View remote connections</strong></li>
<li><code class="shell">git remote -v</code></li>
</ul>
Expand Down
6 changes: 4 additions & 2 deletions challenges/forks_and_clones.html
Expand Up @@ -160,7 +160,7 @@ <h3>Connect to the Original Repository</h3>

<p><code class="shell">git remote add upstream https://github.com/jlord/patchwork.git</code></p>

<p>To be sure you have the correct remotes set up, type <code>git remote -v</code> to list out the addresses you have stored. You should have an 'origin' remote with <em>your fork's</em> address and then an 'upstream' remote with the address to the original, with the URL noted above in this step.</p>
<p>To be sure you have the correct remotes set up, type <code>git remote -v</code> to list out the addresses you have stored. <b>You should have an 'origin' remote with your fork's address and then an 'upstream' remote with the address to the original, the URL noted above in this step.</b></p>
</div>

<div class="verify bold-blue solid-box">
Expand All @@ -179,8 +179,10 @@ <h3>Connect to the Original Repository</h3>

<div class="chal-tip grey-border border-box">
<ul class="no-list-style">
<li><strong>Add remote connections</strong></li>
<li><strong>Add a remote</strong></li>
<li><code class="shell">git remote add &#60;REMOTENAME&#62; &#60;URL&#62;</code></li>
<li><strong>Change a remote URL</strong></li>
<li><code class="shell">git remote set-url &#60;REMOTENAME&#62; &#60;URL&#62;</code></li>
<li><strong>View remote connections</strong></li>
<li><code class="shell">git remote -v</code></li>
</ul>
Expand Down

0 comments on commit d9bf399

Please sign in to comment.