diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-09-29 16:43:06 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-29 16:43:06 -0700 |
commit | 471fa1ecd5c323807b8156956c4602c5966f3a2b (patch) | |
tree | 816be9d810e4ef97a5041ebdf6fec43d569d6b87 /Documentation | |
parent | ff08c373dccf3f5950c73ed3025aeb15b075895d (diff) | |
parent | 683b56791b4e8a29ff9bc98c7faff69d7854d845 (diff) | |
download | git-471fa1ecd5c323807b8156956c4602c5966f3a2b.tar.gz |
Merge branch 'jb/remote-rm'
* jb/remote-rm:
git-remote rm: add tests and minor fix-ups
remote: document the 'rm' subcommand
remote: add 'rm' subcommand
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-remote.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/git-remote.txt b/Documentation/git-remote.txt index 94b9f17772..027ba11bdb 100644 --- a/Documentation/git-remote.txt +++ b/Documentation/git-remote.txt @@ -11,6 +11,7 @@ SYNOPSIS [verse] 'git-remote' 'git-remote' add [-t <branch>] [-m <branch>] [-f] [--mirror] <name> <url> +'git-remote' rm <name> 'git-remote' show <name> 'git-remote' prune <name> 'git-remote' update [group] @@ -50,6 +51,11 @@ In mirror mode, enabled with `--mirror`, the refs will not be stored in the 'refs/remotes/' namespace, but in 'refs/heads/'. This option only makes sense in bare repositories. +'rm':: + +Remove the remote named <name>. All remote tracking branches and +configuration settings for the remote are removed. + 'show':: Gives some information about the remote <name>. |