Merge branch 'jc/maint-reflog-bad-timestamp' into maint
[git/dscho.git] / Documentation / git-remote.txt
blobc272c92d4bef4d451505634a412eaf3a10762d95
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 set-head' <name> (-a | -d | <branch>)
17 'git remote' [-v | --verbose] 'show' [-n] <name>
18 'git remote prune' [-n | --dry-run] <name>
19 'git remote' [-v | --verbose] 'update' [-p | --prune] [group | remote]...
21 DESCRIPTION
22 -----------
24 Manage the set of repositories ("remotes") whose branches you track.
27 OPTIONS
28 -------
30 -v::
31 --verbose::
32         Be a little more verbose and show remote url after name.
33         NOTE: This must be placed between `remote` and `subcommand`.
36 COMMANDS
37 --------
39 With no arguments, shows a list of existing remotes.  Several
40 subcommands are available to perform operations on the remotes.
42 'add'::
44 Adds a remote named <name> for the repository at
45 <url>.  The command `git fetch <name>` can then be used to create and
46 update remote-tracking branches <name>/<branch>.
48 With `-f` option, `git fetch <name>` is run immediately after
49 the remote information is set up.
51 With `-t <branch>` option, instead of the default glob
52 refspec for the remote to track all branches under
53 `$GIT_DIR/remotes/<name>/`, a refspec to track only `<branch>`
54 is created.  You can give more than one `-t <branch>` to track
55 multiple branches without grabbing all branches.
57 With `-m <master>` option, `$GIT_DIR/remotes/<name>/HEAD` is set
58 up to point at remote's `<master>` branch. See also the set-head command.
60 In mirror mode, enabled with `\--mirror`, the refs will not be stored
61 in the 'refs/remotes/' namespace, but in 'refs/heads/'.  This option
62 only makes sense in bare repositories.  If a remote uses mirror
63 mode, furthermore, `git push` will always behave as if `\--mirror`
64 was passed.
66 'rename'::
68 Rename the remote named <old> to <new>. All remote tracking branches and
69 configuration settings for the remote are updated.
71 In case <old> and <new> are the same, and <old> is a file under
72 `$GIT_DIR/remotes` or `$GIT_DIR/branches`, the remote is converted to
73 the configuration file format.
75 'rm'::
77 Remove the remote named <name>. All remote tracking branches and
78 configuration settings for the remote are removed.
80 'set-head'::
82 Sets or deletes the default branch (`$GIT_DIR/remotes/<name>/HEAD`) for
83 the named remote. Having a default branch for a remote is not required,
84 but allows the name of the remote to be specified in lieu of a specific
85 branch. For example, if the default branch for `origin` is set to
86 `master`, then `origin` may be specified wherever you would normally
87 specify `origin/master`.
89 With `-d`, `$GIT_DIR/remotes/<name>/HEAD` is deleted.
91 With `-a`, the remote is queried to determine its `HEAD`, then
92 `$GIT_DIR/remotes/<name>/HEAD` is set to the same branch. e.g., if the remote
93 `HEAD` is pointed at `next`, "`git remote set-head origin -a`" will set
94 `$GIT_DIR/refs/remotes/origin/HEAD` to `refs/remotes/origin/next`. This will
95 only work if `refs/remotes/origin/next` already exists; if not it must be
96 fetched first.
98 Use `<branch>` to set `$GIT_DIR/remotes/<name>/HEAD` explicitly. e.g., "git
99 remote set-head origin master" will set `$GIT_DIR/refs/remotes/origin/HEAD` to
100 `refs/remotes/origin/master`. This will only work if
101 `refs/remotes/origin/master` already exists; if not it must be fetched first.
104 'show'::
106 Gives some information about the remote <name>.
108 With `-n` option, the remote heads are not queried first with
109 `git ls-remote <name>`; cached information is used instead.
111 'prune'::
113 Deletes all stale tracking branches under <name>.
114 These stale branches have already been removed from the remote repository
115 referenced by <name>, but are still locally available in
116 "remotes/<name>".
118 With `--dry-run` option, report what branches will be pruned, but do not
119 actually prune them.
121 'update'::
123 Fetch updates for a named set of remotes in the repository as defined by
124 remotes.<group>.  If a named group is not specified on the command line,
125 the configuration parameter remotes.default will be used; if
126 remotes.default is not defined, all remotes which do not have the
127 configuration parameter remote.<name>.skipDefaultUpdate set to true will
128 be updated.  (See linkgit:git-config[1]).
130 With `--prune` option, prune all the remotes that are updated.
133 DISCUSSION
134 ----------
136 The remote configuration is achieved using the `remote.origin.url` and
137 `remote.origin.fetch` configuration variables.  (See
138 linkgit:git-config[1]).
140 Examples
141 --------
143 * Add a new remote, fetch, and check out a branch from it
145 ------------
146 $ git remote
147 origin
148 $ git branch -r
149 origin/master
150 $ git remote add linux-nfs git://linux-nfs.org/pub/linux/nfs-2.6.git
151 $ git remote
152 linux-nfs
153 origin
154 $ git fetch
155 * refs/remotes/linux-nfs/master: storing branch 'master' ...
156   commit: bf81b46
157 $ git branch -r
158 origin/master
159 linux-nfs/master
160 $ git checkout -b nfs linux-nfs/master
162 ------------
164 * Imitate 'git-clone' but track only selected branches
166 ------------
167 $ mkdir project.git
168 $ cd project.git
169 $ git init
170 $ git remote add -f -t master -m master origin git://example.com/git.git/
171 $ git merge origin
172 ------------
175 SEE ALSO
176 --------
177 linkgit:git-fetch[1]
178 linkgit:git-branch[1]
179 linkgit:git-config[1]
181 Author
182 ------
183 Written by Junio Hamano
186 Documentation
187 --------------
188 Documentation by J. Bruce Fields and the git-list <git@vger.kernel.org>.
193 Part of the linkgit:git[1] suite