]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-remote.txt
Update Swedish translation (724t0f0u).
[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]
a9f5a355 13'git remote add' [-t <branch>] [-m <master>] [-f] [--tags|--no-tags] [--mirror=<fetch|push>] <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>)
ca5bc9e6 17'git remote set-branches' [--add] <name> <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>
0adda936 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
0aceb220 63the `refs/remotes/<name>/` namespace, a refspec to track only `<branch>`
c5ddca1f 64is created. You can give more than one `-t <branch>` to track
cf593cc4 65multiple branches without grabbing all branches.
c5ddca1f 66+
0aceb220 67With `-m <master>` option, a symbolic-ref `refs/remotes/<name>/HEAD` is set
bc14fac8 68up to point at remote's `<master>` branch. See also the set-head command.
38944390 69+
a9f5a355
JK
70When a fetch mirror is created with `\--mirror=fetch`, the refs will not
71be stored in the 'refs/remotes/' namespace, but rather everything in
72'refs/' on the remote will be directly mirrored into 'refs/' in the
73local repository. This option only makes sense in bare repositories,
74because a fetch would overwrite any local commits.
75+
76When a push mirror is created with `\--mirror=push`, then `git push`
77will always behave as if `\--mirror` was passed.
041e69c9 78
bf98421a
MV
79'rename'::
80
0e615b25 81Rename the remote named <old> to <new>. All remote-tracking branches and
bf98421a 82configuration settings for the remote are updated.
74443f18
MV
83+
84In case <old> and <new> are the same, and <old> is a file under
85`$GIT_DIR/remotes` or `$GIT_DIR/branches`, the remote is converted to
86the configuration file format.
bf98421a 87
1b4cbb5d
JB
88'rm'::
89
0e615b25 90Remove the remote named <name>. All remote-tracking branches and
1b4cbb5d
JB
91configuration settings for the remote are removed.
92
bc14fac8
JS
93'set-head'::
94
0aceb220
JH
95Sets or deletes the default branch (i.e. the target of the
96symbolic-ref `refs/remotes/<name>/HEAD`) for
bc14fac8
JS
97the named remote. Having a default branch for a remote is not required,
98but allows the name of the remote to be specified in lieu of a specific
99branch. For example, if the default branch for `origin` is set to
100`master`, then `origin` may be specified wherever you would normally
101specify `origin/master`.
102+
0aceb220 103With `-d`, the symbolic ref `refs/remotes/<name>/HEAD` is deleted.
bc14fac8 104+
0aceb220
JH
105With `-a`, the remote is queried to determine its `HEAD`, then the
106symbolic-ref `refs/remotes/<name>/HEAD` is set to the same branch. e.g., if the remote
bc14fac8 107`HEAD` is pointed at `next`, "`git remote set-head origin -a`" will set
0aceb220 108the symbolic-ref `refs/remotes/origin/HEAD` to `refs/remotes/origin/next`. This will
bc14fac8
JS
109only work if `refs/remotes/origin/next` already exists; if not it must be
110fetched first.
111+
0aceb220
JH
112Use `<branch>` to set the symbolic-ref `refs/remotes/<name>/HEAD` explicitly. e.g., "git
113remote set-head origin master" will set the symbolic-ref `refs/remotes/origin/HEAD` to
bc14fac8
JS
114`refs/remotes/origin/master`. This will only work if
115`refs/remotes/origin/master` already exists; if not it must be fetched first.
116+
117
3d8b6949
JN
118'set-branches'::
119
120Changes the list of branches tracked by the named remote.
121This can be used to track a subset of the available remote branches
122after the initial setup for a remote.
123+
124The named branches will be interpreted as if specified with the
125`-t` option on the 'git remote add' command line.
126+
127With `--add`, instead of replacing the list of currently tracked
128branches, adds to that list.
129
433f2be1
IL
130'set-url'::
131
132Changes URL remote points to. Sets first URL remote points to matching
133regex <oldurl> (first URL if no <oldurl> is given) to <newurl>. If
134<oldurl> doesn't match any URL, error occurs and nothing is changed.
135+
136With '--push', push URLs are manipulated instead of fetch URLs.
137+
138With '--add', instead of changing some URL, new URL is added.
139+
140With '--delete', instead of changing some URL, all URLs matching
141regex <url> are deleted. Trying to delete all non-push URLs is an
142error.
143
0f390875 144'show'::
041e69c9 145
0f390875 146Gives some information about the remote <name>.
181ea688
SV
147+
148With `-n` option, the remote heads are not queried first with
149`git ls-remote <name>`; cached information is used instead.
0f390875
SP
150
151'prune'::
152
8b3f3f84 153Deletes all stale remote-tracking branches under <name>.
859607df 154These stale branches have already been removed from the remote repository
1e592d65
TT
155referenced by <name>, but are still locally available in
156"remotes/<name>".
181ea688 157+
75f492ac 158With `--dry-run` option, report what branches will be pruned, but do not
8d767927 159actually prune them.
1e592d65
TT
160
161'update'::
162
1918278e
TT
163Fetch updates for a named set of remotes in the repository as defined by
164remotes.<group>. If a named group is not specified on the command line,
75f492ac 165the configuration parameter remotes.default will be used; if
cb5c49b9 166remotes.default is not defined, all remotes which do not have the
1918278e 167configuration parameter remote.<name>.skipDefaultUpdate set to true will
5162e697 168be updated. (See linkgit:git-config[1]).
efa54803
FAG
169+
170With `--prune` option, prune all the remotes that are updated.
859607df 171
0f390875
SP
172
173DISCUSSION
174----------
175
041e69c9
BF
176The remote configuration is achieved using the `remote.origin.url` and
177`remote.origin.fetch` configuration variables. (See
5162e697 178linkgit:git-config[1]).
041e69c9
BF
179
180Examples
181--------
182
db554bf0
JH
183* Add a new remote, fetch, and check out a branch from it
184+
041e69c9
BF
185------------
186$ git remote
187origin
188$ git branch -r
189origin/master
8391c60b 190$ git remote add linux-nfs git://linux-nfs.org/pub/linux/nfs-2.6.git
041e69c9
BF
191$ git remote
192linux-nfs
193origin
194$ git fetch
195* refs/remotes/linux-nfs/master: storing branch 'master' ...
196 commit: bf81b46
197$ git branch -r
198origin/master
199linux-nfs/master
200$ git checkout -b nfs linux-nfs/master
201...
202------------
203
0b444cdb 204* Imitate 'git clone' but track only selected branches
db554bf0
JH
205+
206------------
207$ mkdir project.git
208$ cd project.git
209$ git init
210$ git remote add -f -t master -m master origin git://example.com/git.git/
211$ git merge origin
212------------
213
214
56ae8df5 215SEE ALSO
041e69c9 216--------
5162e697
DM
217linkgit:git-fetch[1]
218linkgit:git-branch[1]
219linkgit:git-config[1]
041e69c9 220
041e69c9
BF
221GIT
222---
9e1f0a85 223Part of the linkgit:git[1] suite