Style edits.

This commit is contained in:
Richard Littauer 2019-11-11 07:50:28 -05:00 committed by GitHub
parent 243ba44af5
commit c34b75dae0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1101,10 +1101,10 @@ To rename a different (local) branch:
```sh
(master)$ git branch -m old-name new-name
```
To Delete the old_name remote branch and push the new_name local branch
To delete the `old-name` remote branch and push the `new-name` local branch:
```sh
$ git push origin :old_name new_name
(master)$ git push origin :old_name new_name
```
<a name="i-want-to-checkout-to-a-remote-branch-that-someone-else-is-working-on"></a>