diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2008-11-03 19:26:18 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-11-05 12:23:48 -0800 |
commit | bf98421a3363696f3b4c8aedc242bfaadc1ce6f6 (patch) | |
tree | f3515cea21f61083867f59b0d7254de801acaf9a /Documentation/git-remote.txt | |
parent | 6331adb9c4ec36c70dc3ecc6eb46b7dddb36952d (diff) | |
download | git-bf98421a3363696f3b4c8aedc242bfaadc1ce6f6.tar.gz |
Implement git remote rename
The new rename subcommand does the followings:
1) Renames the remote.foo configuration section to remote.bar
2) Updates the remote.bar.fetch refspecs
3) Updates the branch.*.remote settings
4) Renames the tracking branches: renames the normal refs and rewrites
the symrefs to point to the new refs.
Signed-off-by: Miklos Vajna <vmiklos@frugalware.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-remote.txt')
-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 bb99810ec7..7b227b307f 100644 --- a/Documentation/git-remote.txt +++ b/Documentation/git-remote.txt @@ -11,6 +11,7 @@ SYNOPSIS [verse] 'git remote' [-v | --verbose] 'git remote add' [-t <branch>] [-m <master>] [-f] [--mirror] <name> <url> +'git remote rename' <old> <new> 'git remote rm' <name> 'git remote show' [-n] <name> 'git remote prune' [-n | --dry-run] <name> @@ -61,6 +62,11 @@ only makes sense in bare repositories. If a remote uses mirror mode, furthermore, `git push` will always behave as if `\--mirror` was passed. +'rename':: + +Rename the remote named <old> to <new>. All remote tracking branches and +configuration settings for the remote are updated. + 'rm':: Remove the remote named <name>. All remote tracking branches and |