2007-01-09 05:28:51 +01:00
|
|
|
git-remote(1)
|
|
|
|
============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
git-remote - manage set of tracked repositories
|
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
[verse]
|
2008-06-30 08:09:04 +02:00
|
|
|
'git remote' [-v | --verbose]
|
2008-07-03 07:36:04 +02:00
|
|
|
'git remote add' [-t <branch>] [-m <master>] [-f] [--mirror] <name> <url>
|
2008-11-03 19:26:18 +01:00
|
|
|
'git remote rename' <old> <new>
|
2008-07-03 07:36:04 +02:00
|
|
|
'git remote rm' <name>
|
2009-02-25 09:32:25 +01:00
|
|
|
'git remote set-head' <name> [-a | -d | <branch>]
|
2008-07-03 07:36:04 +02:00
|
|
|
'git remote show' [-n] <name>
|
|
|
|
'git remote prune' [-n | --dry-run] <name>
|
2009-04-06 15:41:02 +02:00
|
|
|
'git remote update' [-p | --prune] [group | remote]...
|
2007-01-09 05:28:51 +01:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
|
|
|
Manage the set of repositories ("remotes") whose branches you track.
|
|
|
|
|
|
|
|
|
2008-06-08 03:36:10 +02:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
|
|
|
|
-v::
|
|
|
|
--verbose::
|
|
|
|
Be a little more verbose and show remote url after name.
|
|
|
|
|
|
|
|
|
2007-02-04 05:02:59 +01:00
|
|
|
COMMANDS
|
|
|
|
--------
|
|
|
|
|
|
|
|
With no arguments, shows a list of existing remotes. Several
|
|
|
|
subcommands are available to perform operations on the remotes.
|
|
|
|
|
|
|
|
'add'::
|
|
|
|
|
|
|
|
Adds a remote named <name> for the repository at
|
2007-01-09 05:28:51 +01:00
|
|
|
<url>. The command `git fetch <name>` can then be used to create and
|
|
|
|
update remote-tracking branches <name>/<branch>.
|
2007-02-26 08:26:11 +01:00
|
|
|
+
|
|
|
|
With `-f` option, `git fetch <name>` is run immediately after
|
|
|
|
the remote information is set up.
|
|
|
|
+
|
|
|
|
With `-t <branch>` option, instead of the default glob
|
|
|
|
refspec for the remote to track all branches under
|
|
|
|
`$GIT_DIR/remotes/<name>/`, a refspec to track only `<branch>`
|
|
|
|
is created. You can give more than one `-t <branch>` to track
|
2007-05-05 20:23:12 +02:00
|
|
|
multiple branches without grabbing all branches.
|
2007-02-26 08:26:11 +01:00
|
|
|
+
|
|
|
|
With `-m <master>` option, `$GIT_DIR/remotes/<name>/HEAD` is set
|
2009-02-25 09:32:25 +01:00
|
|
|
up to point at remote's `<master>` branch. See also the set-head command.
|
2007-09-02 22:10:14 +02:00
|
|
|
+
|
2008-04-17 13:17:20 +02:00
|
|
|
In mirror mode, enabled with `\--mirror`, the refs will not be stored
|
2007-09-02 22:10:14 +02:00
|
|
|
in the 'refs/remotes/' namespace, but in 'refs/heads/'. This option
|
2008-04-17 13:17:20 +02:00
|
|
|
only makes sense in bare repositories. If a remote uses mirror
|
|
|
|
mode, furthermore, `git push` will always behave as if `\--mirror`
|
|
|
|
was passed.
|
2007-01-09 05:28:51 +01:00
|
|
|
|
2008-11-03 19:26:18 +01:00
|
|
|
'rename'::
|
|
|
|
|
|
|
|
Rename the remote named <old> to <new>. All remote tracking branches and
|
|
|
|
configuration settings for the remote are updated.
|
2008-11-10 21:43:03 +01:00
|
|
|
+
|
|
|
|
In case <old> and <new> are the same, and <old> is a file under
|
|
|
|
`$GIT_DIR/remotes` or `$GIT_DIR/branches`, the remote is converted to
|
|
|
|
the configuration file format.
|
2008-11-03 19:26:18 +01:00
|
|
|
|
2007-07-07 17:22:43 +02:00
|
|
|
'rm'::
|
|
|
|
|
|
|
|
Remove the remote named <name>. All remote tracking branches and
|
|
|
|
configuration settings for the remote are removed.
|
|
|
|
|
2009-02-25 09:32:25 +01:00
|
|
|
'set-head'::
|
|
|
|
|
|
|
|
Sets or deletes the default branch (`$GIT_DIR/remotes/<name>/HEAD`) for
|
|
|
|
the named remote. Having a default branch for a remote is not required,
|
|
|
|
but allows the name of the remote to be specified in lieu of a specific
|
|
|
|
branch. For example, if the default branch for `origin` is set to
|
|
|
|
`master`, then `origin` may be specified wherever you would normally
|
|
|
|
specify `origin/master`.
|
|
|
|
+
|
|
|
|
With `-d`, `$GIT_DIR/remotes/<name>/HEAD` is deleted.
|
|
|
|
+
|
|
|
|
With `-a`, the remote is queried to determine its `HEAD`, then
|
|
|
|
`$GIT_DIR/remotes/<name>/HEAD` is set to the same branch. e.g., if the remote
|
|
|
|
`HEAD` is pointed at `next`, "`git remote set-head origin -a`" will set
|
|
|
|
`$GIT_DIR/refs/remotes/origin/HEAD` to `refs/remotes/origin/next`. This will
|
|
|
|
only work if `refs/remotes/origin/next` already exists; if not it must be
|
|
|
|
fetched first.
|
|
|
|
+
|
|
|
|
Use `<branch>` to set `$GIT_DIR/remotes/<name>/HEAD` explicitly. e.g., "git
|
|
|
|
remote set-head origin master" will set `$GIT_DIR/refs/remotes/origin/HEAD` to
|
|
|
|
`refs/remotes/origin/master`. This will only work if
|
|
|
|
`refs/remotes/origin/master` already exists; if not it must be fetched first.
|
|
|
|
+
|
|
|
|
|
2007-02-04 05:02:59 +01:00
|
|
|
'show'::
|
2007-01-09 05:28:51 +01:00
|
|
|
|
2007-02-04 05:02:59 +01:00
|
|
|
Gives some information about the remote <name>.
|
2007-06-30 10:56:16 +02:00
|
|
|
+
|
|
|
|
With `-n` option, the remote heads are not queried first with
|
|
|
|
`git ls-remote <name>`; cached information is used instead.
|
2007-02-04 05:02:59 +01:00
|
|
|
|
|
|
|
'prune'::
|
|
|
|
|
|
|
|
Deletes all stale tracking branches under <name>.
|
2007-02-02 06:06:08 +01:00
|
|
|
These stale branches have already been removed from the remote repository
|
2007-02-19 05:00:00 +01:00
|
|
|
referenced by <name>, but are still locally available in
|
|
|
|
"remotes/<name>".
|
2007-06-30 10:56:16 +02:00
|
|
|
+
|
2008-06-10 16:51:35 +02:00
|
|
|
With `--dry-run` option, report what branches will be pruned, but do no
|
|
|
|
actually prune them.
|
2007-02-19 05:00:00 +01:00
|
|
|
|
|
|
|
'update'::
|
|
|
|
|
2007-02-20 21:13:43 +01:00
|
|
|
Fetch updates for a named set of remotes in the repository as defined by
|
|
|
|
remotes.<group>. If a named group is not specified on the command line,
|
|
|
|
the configuration parameter remotes.default will get used; if
|
2007-11-13 19:17:47 +01:00
|
|
|
remotes.default is not defined, all remotes which do not have the
|
2007-02-20 21:13:43 +01:00
|
|
|
configuration parameter remote.<name>.skipDefaultUpdate set to true will
|
2007-12-29 07:20:38 +01:00
|
|
|
be updated. (See linkgit:git-config[1]).
|
2009-04-03 11:03:44 +02:00
|
|
|
+
|
|
|
|
With `--prune` option, prune all the remotes that are updated.
|
2007-02-02 06:06:08 +01:00
|
|
|
|
2007-02-04 05:02:59 +01:00
|
|
|
|
|
|
|
DISCUSSION
|
|
|
|
----------
|
|
|
|
|
2007-01-09 05:28:51 +01:00
|
|
|
The remote configuration is achieved using the `remote.origin.url` and
|
|
|
|
`remote.origin.fetch` configuration variables. (See
|
2007-12-29 07:20:38 +01:00
|
|
|
linkgit:git-config[1]).
|
2007-01-09 05:28:51 +01:00
|
|
|
|
|
|
|
Examples
|
|
|
|
--------
|
|
|
|
|
2007-02-28 23:05:42 +01:00
|
|
|
* Add a new remote, fetch, and check out a branch from it
|
|
|
|
+
|
2007-01-09 05:28:51 +01:00
|
|
|
------------
|
|
|
|
$ git remote
|
|
|
|
origin
|
|
|
|
$ git branch -r
|
|
|
|
origin/master
|
2007-11-03 03:54:31 +01:00
|
|
|
$ git remote add linux-nfs git://linux-nfs.org/pub/linux/nfs-2.6.git
|
2007-01-09 05:28:51 +01:00
|
|
|
$ git remote
|
|
|
|
linux-nfs
|
|
|
|
origin
|
|
|
|
$ git fetch
|
|
|
|
* refs/remotes/linux-nfs/master: storing branch 'master' ...
|
|
|
|
commit: bf81b46
|
|
|
|
$ git branch -r
|
|
|
|
origin/master
|
|
|
|
linux-nfs/master
|
|
|
|
$ git checkout -b nfs linux-nfs/master
|
|
|
|
...
|
|
|
|
------------
|
|
|
|
|
2008-07-03 07:28:15 +02:00
|
|
|
* Imitate 'git-clone' but track only selected branches
|
2007-02-28 23:05:42 +01:00
|
|
|
+
|
|
|
|
------------
|
|
|
|
$ mkdir project.git
|
|
|
|
$ cd project.git
|
|
|
|
$ git init
|
|
|
|
$ git remote add -f -t master -m master origin git://example.com/git.git/
|
|
|
|
$ git merge origin
|
|
|
|
------------
|
|
|
|
|
|
|
|
|
2008-05-29 01:55:27 +02:00
|
|
|
SEE ALSO
|
2007-01-09 05:28:51 +01:00
|
|
|
--------
|
2007-12-29 07:20:38 +01:00
|
|
|
linkgit:git-fetch[1]
|
|
|
|
linkgit:git-branch[1]
|
|
|
|
linkgit:git-config[1]
|
2007-01-09 05:28:51 +01:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Junio Hamano
|
|
|
|
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by J. Bruce Fields and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|