1
0
Fork 0

Removes superfluous words in remote branch delete tips

This commit is contained in:
Soon Van 2012-12-31 15:12:33 -05:00
parent d9574958d4
commit 7da3713a56
1 changed files with 4 additions and 4 deletions

View File

@ -222,8 +222,8 @@ Deleted branch testing (was 78b2670).
<p>When you're done with a remote branch, whether it's been merged <p>When you're done with a remote branch, whether it's been merged
into the remote master or you want to abandon it and sweep it under into the remote master or you want to abandon it and sweep it under
the rug, you'll issue a <code>git push</code> command with special the rug, you'll issue a <code>git push</code> command with a specially
colon to nuke that branch.</p> placed colon symbol to remove that branch.</p>
<pre> <pre>
<b>$ git push origin :tidy-cutlery</b> <b>$ git push origin :tidy-cutlery</b>
@ -240,9 +240,9 @@ To git@github.com:octocat/Spoon-Knife.git
remote branch to become nothing. remote branch to become nothing.
</p> </p>
<p>Alternatively, you can also run <p>Alternatively, you can run
<code>git push remote-name --delete branchname</code> <code>git push remote-name --delete branchname</code>
which is basically a wrapper for the above colon prefix version. which is a wrapper for the colon technique of deleting a remote branch.
</p> </p>
<p class="nutshell"> <p class="nutshell">