]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-remote.txt
Merge branch 'sb/format-patch-signature'
[thirdparty/git.git] / Documentation / git-remote.txt
CommitLineData
041e69c9
BF
1git-remote(1)
2============
3
4NAME
5----
6git-remote - manage set of tracked repositories
7
8
9SYNOPSIS
10--------
11[verse]
b1889c36 12'git remote' [-v | --verbose]
111fb858 13'git remote add' [-t <branch>] [-m <master>] [-f] [--tags|--no-tags] [--mirror] <name> <url>
bf98421a 14'git remote rename' <old> <new>
04c2407e 15'git remote rm' <name>
4504107d 16'git remote set-head' <name> (-a | -d | <branch>)
3d8b6949 17'git remote set-branches' <name> [--add] <branch>...
433f2be1
IL
18'git remote set-url' [--push] <name> <newurl> [<oldurl>]
19'git remote set-url --add' [--push] <name> <newurl>
20'git remote set-url --delete' [--push] <name> <url>
4504107d 21'git remote' [-v | --verbose] 'show' [-n] <name>
04c2407e 22'git remote prune' [-n | --dry-run] <name>
4504107d 23'git remote' [-v | --verbose] 'update' [-p | --prune] [group | remote]...
041e69c9
BF
24
25DESCRIPTION
26-----------
27
28Manage the set of repositories ("remotes") whose branches you track.
29
041e69c9 30
459cf2e9
SB
31OPTIONS
32-------
33
34-v::
35--verbose::
36 Be a little more verbose and show remote url after name.
4504107d 37 NOTE: This must be placed between `remote` and `subcommand`.
459cf2e9
SB
38
39
0f390875
SP
40COMMANDS
41--------
42
43With no arguments, shows a list of existing remotes. Several
44subcommands are available to perform operations on the remotes.
45
46'add'::
47
48Adds a remote named <name> for the repository at
041e69c9
BF
49<url>. The command `git fetch <name>` can then be used to create and
50update remote-tracking branches <name>/<branch>.
c5ddca1f
JH
51+
52With `-f` option, `git fetch <name>` is run immediately after
53the remote information is set up.
54+
111fb858
ST
55With `--tags` option, `git fetch <name>` imports every tag from the
56remote repository.
57+
58With `--no-tags` option, `git fetch <name>` does not import tags from
59the remote repository.
60+
c5ddca1f
JH
61With `-t <branch>` option, instead of the default glob
62refspec for the remote to track all branches under
63`$GIT_DIR/remotes/<name>/`, a refspec to track only `<branch>`
64is created. You can give more than one `-t <branch>` to track
cf593cc4 65multiple branches without grabbing all branches.
c5ddca1f
JH
66+
67With `-m <master>` option, `$GIT_DIR/remotes/<name>/HEAD` is set
bc14fac8 68up to point at remote's `<master>` branch. See also the set-head command.
38944390 69+
84bb2dfd 70In mirror mode, enabled with `\--mirror`, the refs will not be stored
38944390 71in the 'refs/remotes/' namespace, but in 'refs/heads/'. This option
84bb2dfd
PB
72only makes sense in bare repositories. If a remote uses mirror
73mode, furthermore, `git push` will always behave as if `\--mirror`
74was passed.
041e69c9 75
bf98421a
MV
76'rename'::
77
78Rename the remote named <old> to <new>. All remote tracking branches and
79configuration settings for the remote are updated.
74443f18
MV
80+
81In case <old> and <new> are the same, and <old> is a file under
82`$GIT_DIR/remotes` or `$GIT_DIR/branches`, the remote is converted to
83the configuration file format.
bf98421a 84
1b4cbb5d
JB
85'rm'::
86
87Remove the remote named <name>. All remote tracking branches and
88configuration settings for the remote are removed.
89
bc14fac8
JS
90'set-head'::
91
92Sets or deletes the default branch (`$GIT_DIR/remotes/<name>/HEAD`) for
93the named remote. Having a default branch for a remote is not required,
94but allows the name of the remote to be specified in lieu of a specific
95branch. For example, if the default branch for `origin` is set to
96`master`, then `origin` may be specified wherever you would normally
97specify `origin/master`.
98+
99With `-d`, `$GIT_DIR/remotes/<name>/HEAD` is deleted.
100+
101With `-a`, the remote is queried to determine its `HEAD`, then
102`$GIT_DIR/remotes/<name>/HEAD` is set to the same branch. e.g., if the remote
103`HEAD` is pointed at `next`, "`git remote set-head origin -a`" will set
104`$GIT_DIR/refs/remotes/origin/HEAD` to `refs/remotes/origin/next`. This will
105only work if `refs/remotes/origin/next` already exists; if not it must be
106fetched first.
107+
108Use `<branch>` to set `$GIT_DIR/remotes/<name>/HEAD` explicitly. e.g., "git
109remote set-head origin master" will set `$GIT_DIR/refs/remotes/origin/HEAD` to
110`refs/remotes/origin/master`. This will only work if
111`refs/remotes/origin/master` already exists; if not it must be fetched first.
112+
113
3d8b6949
JN
114'set-branches'::
115
116Changes the list of branches tracked by the named remote.
117This can be used to track a subset of the available remote branches
118after the initial setup for a remote.
119+
120The named branches will be interpreted as if specified with the
121`-t` option on the 'git remote add' command line.
122+
123With `--add`, instead of replacing the list of currently tracked
124branches, adds to that list.
125
433f2be1
IL
126'set-url'::
127
128Changes URL remote points to. Sets first URL remote points to matching
129regex <oldurl> (first URL if no <oldurl> is given) to <newurl>. If
130<oldurl> doesn't match any URL, error occurs and nothing is changed.
131+
132With '--push', push URLs are manipulated instead of fetch URLs.
133+
134With '--add', instead of changing some URL, new URL is added.
135+
136With '--delete', instead of changing some URL, all URLs matching
137regex <url> are deleted. Trying to delete all non-push URLs is an
138error.
139
0f390875 140'show'::
041e69c9 141
0f390875 142Gives some information about the remote <name>.
181ea688
SV
143+
144With `-n` option, the remote heads are not queried first with
145`git ls-remote <name>`; cached information is used instead.
0f390875
SP
146
147'prune'::
148
149Deletes all stale tracking branches under <name>.
859607df 150These stale branches have already been removed from the remote repository
1e592d65
TT
151referenced by <name>, but are still locally available in
152"remotes/<name>".
181ea688 153+
75f492ac 154With `--dry-run` option, report what branches will be pruned, but do not
8d767927 155actually prune them.
1e592d65
TT
156
157'update'::
158
1918278e
TT
159Fetch updates for a named set of remotes in the repository as defined by
160remotes.<group>. If a named group is not specified on the command line,
75f492ac 161the configuration parameter remotes.default will be used; if
cb5c49b9 162remotes.default is not defined, all remotes which do not have the
1918278e 163configuration parameter remote.<name>.skipDefaultUpdate set to true will
5162e697 164be updated. (See linkgit:git-config[1]).
efa54803
FAG
165+
166With `--prune` option, prune all the remotes that are updated.
859607df 167
0f390875
SP
168
169DISCUSSION
170----------
171
041e69c9
BF
172The remote configuration is achieved using the `remote.origin.url` and
173`remote.origin.fetch` configuration variables. (See
5162e697 174linkgit:git-config[1]).
041e69c9
BF
175
176Examples
177--------
178
db554bf0
JH
179* Add a new remote, fetch, and check out a branch from it
180+
041e69c9
BF
181------------
182$ git remote
183origin
184$ git branch -r
185origin/master
8391c60b 186$ git remote add linux-nfs git://linux-nfs.org/pub/linux/nfs-2.6.git
041e69c9
BF
187$ git remote
188linux-nfs
189origin
190$ git fetch
191* refs/remotes/linux-nfs/master: storing branch 'master' ...
192 commit: bf81b46
193$ git branch -r
194origin/master
195linux-nfs/master
196$ git checkout -b nfs linux-nfs/master
197...
198------------
199
0b444cdb 200* Imitate 'git clone' but track only selected branches
db554bf0
JH
201+
202------------
203$ mkdir project.git
204$ cd project.git
205$ git init
206$ git remote add -f -t master -m master origin git://example.com/git.git/
207$ git merge origin
208------------
209
210
56ae8df5 211SEE ALSO
041e69c9 212--------
5162e697
DM
213linkgit:git-fetch[1]
214linkgit:git-branch[1]
215linkgit:git-config[1]
041e69c9
BF
216
217Author
218------
219Written by Junio Hamano
220
221
222Documentation
223--------------
224Documentation by J. Bruce Fields and the git-list <git@vger.kernel.org>.
225
226
227GIT
228---
9e1f0a85 229Part of the linkgit:git[1] suite