git-remote: document the migration feature of the rename subcommand
[git/dscho.git] / Documentation / git-remote.txt
blobfad983e297514da7e847196b0375e3254fdf235d
1 git-remote(1)
2 ============
4 NAME
5 ----
6 git-remote - manage set of tracked repositories
9 SYNOPSIS
10 --------
11 [verse]
12 'git remote' [-v | --verbose]
13 'git remote add' [-t <branch>] [-m <master>] [-f] [--mirror] <name> <url>
14 'git remote rename' <old> <new>
15 'git remote rm' <name>
16 'git remote show' [-n] <name>
17 'git remote prune' [-n | --dry-run] <name>
18 'git remote update' [group]
20 DESCRIPTION
21 -----------
23 Manage the set of repositories ("remotes") whose branches you track.
26 OPTIONS
27 -------
29 -v::
30 --verbose::
31         Be a little more verbose and show remote url after name.
34 COMMANDS
35 --------
37 With no arguments, shows a list of existing remotes.  Several
38 subcommands are available to perform operations on the remotes.
40 'add'::
42 Adds a remote named <name> for the repository at
43 <url>.  The command `git fetch <name>` can then be used to create and
44 update remote-tracking branches <name>/<branch>.
46 With `-f` option, `git fetch <name>` is run immediately after
47 the remote information is set up.
49 With `-t <branch>` option, instead of the default glob
50 refspec for the remote to track all branches under
51 `$GIT_DIR/remotes/<name>/`, a refspec to track only `<branch>`
52 is created.  You can give more than one `-t <branch>` to track
53 multiple branches without grabbing all branches.
55 With `-m <master>` option, `$GIT_DIR/remotes/<name>/HEAD` is set
56 up to point at remote's `<master>` branch instead of whatever
57 branch the `HEAD` at the remote repository actually points at.
59 In mirror mode, enabled with `\--mirror`, the refs will not be stored
60 in the 'refs/remotes/' namespace, but in 'refs/heads/'.  This option
61 only makes sense in bare repositories.  If a remote uses mirror
62 mode, furthermore, `git push` will always behave as if `\--mirror`
63 was passed.
65 'rename'::
67 Rename the remote named <old> to <new>. All remote tracking branches and
68 configuration settings for the remote are updated.
70 In case <old> and <new> are the same, and <old> is a file under
71 `$GIT_DIR/remotes` or `$GIT_DIR/branches`, the remote is converted to
72 the configuration file format.
74 'rm'::
76 Remove the remote named <name>. All remote tracking branches and
77 configuration settings for the remote are removed.
79 'show'::
81 Gives some information about the remote <name>.
83 With `-n` option, the remote heads are not queried first with
84 `git ls-remote <name>`; cached information is used instead.
86 'prune'::
88 Deletes all stale tracking branches under <name>.
89 These stale branches have already been removed from the remote repository
90 referenced by <name>, but are still locally available in
91 "remotes/<name>".
93 With `--dry-run` option, report what branches will be pruned, but do no
94 actually prune them.
96 'update'::
98 Fetch updates for a named set of remotes in the repository as defined by
99 remotes.<group>.  If a named group is not specified on the command line,
100 the configuration parameter remotes.default will get used; if
101 remotes.default is not defined, all remotes which do not have the
102 configuration parameter remote.<name>.skipDefaultUpdate set to true will
103 be updated.  (See linkgit:git-config[1]).
106 DISCUSSION
107 ----------
109 The remote configuration is achieved using the `remote.origin.url` and
110 `remote.origin.fetch` configuration variables.  (See
111 linkgit:git-config[1]).
113 Examples
114 --------
116 * Add a new remote, fetch, and check out a branch from it
118 ------------
119 $ git remote
120 origin
121 $ git branch -r
122 origin/master
123 $ git remote add linux-nfs git://linux-nfs.org/pub/linux/nfs-2.6.git
124 $ git remote
125 linux-nfs
126 origin
127 $ git fetch
128 * refs/remotes/linux-nfs/master: storing branch 'master' ...
129   commit: bf81b46
130 $ git branch -r
131 origin/master
132 linux-nfs/master
133 $ git checkout -b nfs linux-nfs/master
135 ------------
137 * Imitate 'git-clone' but track only selected branches
139 ------------
140 $ mkdir project.git
141 $ cd project.git
142 $ git init
143 $ git remote add -f -t master -m master origin git://example.com/git.git/
144 $ git merge origin
145 ------------
148 SEE ALSO
149 --------
150 linkgit:git-fetch[1]
151 linkgit:git-branch[1]
152 linkgit:git-config[1]
154 Author
155 ------
156 Written by Junio Hamano
159 Documentation
160 --------------
161 Documentation by J. Bruce Fields and the git-list <git@vger.kernel.org>.
166 Part of the linkgit:git[1] suite