Skip to content

Commit

Permalink
Merge pull request progit#677 from kausar007/master
Browse files Browse the repository at this point in the history
Add git remote remove command
  • Loading branch information
ben authored Nov 5, 2016
2 parents b0580d2 + cb44372 commit bea17a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions book/02-git-basics/sections/remotes.asc
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,11 @@ paul
It's worth mentioning that this changes all your remote-tracking branch names, too.
What used to be referenced at `pb/master` is now at `paul/master`.

If you want to remove a remote for some reason – you've moved the server or are no longer using a particular mirror, or perhaps a contributor isn't contributing anymore – you can use `git remote rm`:
If you want to remove a remote for some reason – you've moved the server or are no longer using a particular mirror, or perhaps a contributor isn't contributing anymore – you can either use `git remote remove` or `git remote rm`:

[source,console]
----
$ git remote rm paul
$ git remote remove paul
$ git remote
origin
----

0 comments on commit bea17a4

Please sign in to comment.