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]
|
2013-05-09 03:16:55 +02:00
|
|
|
'git remote add' [-t <branch>] [-m <master>] [-f] [--[no-]tags] [--mirror=<fetch|push>] <name> <url>
|
2008-11-03 19:26:18 +01:00
|
|
|
'git remote rename' <old> <new>
|
2012-09-06 14:25:23 +02:00
|
|
|
'git remote remove' <name>
|
2009-11-21 00:43:13 +01:00
|
|
|
'git remote set-head' <name> (-a | -d | <branch>)
|
2012-02-18 12:17:47 +01:00
|
|
|
'git remote set-branches' [--add] <name> <branch>...
|
2010-01-18 18:18:02 +01:00
|
|
|
'git remote set-url' [--push] <name> <newurl> [<oldurl>]
|
|
|
|
'git remote set-url --add' [--push] <name> <newurl>
|
|
|
|
'git remote set-url --delete' [--push] <name> <url>
|
2013-04-24 15:54:37 +02:00
|
|
|
'git remote' [-v | --verbose] 'show' [-n] <name>...
|
|
|
|
'git remote prune' [-n | --dry-run] <name>...
|
2010-10-08 19:31:17 +02:00
|
|
|
'git remote' [-v | --verbose] '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.
|
2009-11-21 00:43:13 +01:00
|
|
|
NOTE: This must be placed between `remote` and `subcommand`.
|
2008-06-08 03:36:10 +02:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
+
|
2010-04-20 01:31:31 +02:00
|
|
|
With `--tags` option, `git fetch <name>` imports every tag from the
|
|
|
|
remote repository.
|
|
|
|
+
|
|
|
|
With `--no-tags` option, `git fetch <name>` does not import tags from
|
|
|
|
the remote repository.
|
|
|
|
+
|
2007-02-26 08:26:11 +01:00
|
|
|
With `-t <branch>` option, instead of the default glob
|
|
|
|
refspec for the remote to track all branches under
|
2011-06-23 17:33:05 +02:00
|
|
|
the `refs/remotes/<name>/` namespace, a refspec to track only `<branch>`
|
2007-02-26 08:26:11 +01:00
|
|
|
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
|
|
|
+
|
2011-06-23 17:33:05 +02:00
|
|
|
With `-m <master>` option, a symbolic-ref `refs/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
|
|
|
+
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 10:51:57 +02:00
|
|
|
When a fetch mirror is created with `--mirror=fetch`, the refs will not
|
remote: separate the concept of push and fetch mirrors
git-remote currently has one option, "--mirror", which sets
up mirror configuration which can be used for either
fetching or pushing. It looks like this:
[remote "mirror"]
url = wherever
fetch = +refs/*:refs/*
mirror = true
However, a remote like this can be dangerous and confusing.
Specifically:
1. If you issue the wrong command, it can be devastating.
You are not likely to "push" when you meant to "fetch",
but "git remote update" will try to fetch it, even if
you intended the remote only for pushing. In either
case, the results can be quite destructive. An
unintended push will overwrite or delete remote refs,
and an unintended fetch can overwrite local branches.
2. The tracking setup code can produce confusing results.
The fetch refspec above means that "git checkout -b new
master" will consider refs/heads/master to come from
the remote "mirror", even if you only ever intend to
push to the mirror. It will set up the "new" branch to
track mirror's refs/heads/master.
3. The push code tries to opportunistically update
tracking branches. If you "git push mirror foo:bar",
it will see that we are updating mirror's
refs/heads/bar, which corresponds to our local
refs/heads/bar, and will update our local branch.
To solve this, we split the concept into "push mirrors" and
"fetch mirrors". Push mirrors set only remote.*.mirror,
solving (2) and (3), and making an accidental fetch write
only into FETCH_HEAD. Fetch mirrors set only the fetch
refspec, meaning an accidental push will not force-overwrite
or delete refs on the remote end.
The new syntax is "--mirror=<fetch|push>". For
compatibility, we keep "--mirror" as-is, setting up both
types simultaneously.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2011-03-30 21:53:19 +02:00
|
|
|
be stored in the 'refs/remotes/' namespace, but rather everything in
|
|
|
|
'refs/' on the remote will be directly mirrored into 'refs/' in the
|
|
|
|
local repository. This option only makes sense in bare repositories,
|
|
|
|
because a fetch would overwrite any local commits.
|
|
|
|
+
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 10:51:57 +02:00
|
|
|
When a push mirror is created with `--mirror=push`, then `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'::
|
|
|
|
|
2010-11-02 16:31:20 +01:00
|
|
|
Rename the remote named <old> to <new>. All remote-tracking branches and
|
2008-11-03 19:26:18 +01:00
|
|
|
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
|
|
|
|
2012-09-06 14:25:23 +02:00
|
|
|
'remove'::
|
2007-07-07 17:22:43 +02:00
|
|
|
'rm'::
|
|
|
|
|
2010-11-02 16:31:20 +01:00
|
|
|
Remove the remote named <name>. All remote-tracking branches and
|
2007-07-07 17:22:43 +02:00
|
|
|
configuration settings for the remote are removed.
|
|
|
|
|
2009-02-25 09:32:25 +01:00
|
|
|
'set-head'::
|
|
|
|
|
2011-06-23 17:33:05 +02:00
|
|
|
Sets or deletes the default branch (i.e. the target of the
|
|
|
|
symbolic-ref `refs/remotes/<name>/HEAD`) for
|
2009-02-25 09:32:25 +01:00
|
|
|
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`.
|
|
|
|
+
|
2011-06-23 17:33:05 +02:00
|
|
|
With `-d`, the symbolic ref `refs/remotes/<name>/HEAD` is deleted.
|
2009-02-25 09:32:25 +01:00
|
|
|
+
|
2011-06-23 17:33:05 +02:00
|
|
|
With `-a`, the remote is queried to determine its `HEAD`, then the
|
|
|
|
symbolic-ref `refs/remotes/<name>/HEAD` is set to the same branch. e.g., if the remote
|
2009-02-25 09:32:25 +01:00
|
|
|
`HEAD` is pointed at `next`, "`git remote set-head origin -a`" will set
|
2011-06-23 17:33:05 +02:00
|
|
|
the symbolic-ref `refs/remotes/origin/HEAD` to `refs/remotes/origin/next`. This will
|
2009-02-25 09:32:25 +01:00
|
|
|
only work if `refs/remotes/origin/next` already exists; if not it must be
|
|
|
|
fetched first.
|
|
|
|
+
|
2011-06-23 17:33:05 +02:00
|
|
|
Use `<branch>` to set the symbolic-ref `refs/remotes/<name>/HEAD` explicitly. e.g., "git
|
|
|
|
remote set-head origin master" will set the symbolic-ref `refs/remotes/origin/HEAD` to
|
2009-02-25 09:32:25 +01:00
|
|
|
`refs/remotes/origin/master`. This will only work if
|
|
|
|
`refs/remotes/origin/master` already exists; if not it must be fetched first.
|
|
|
|
+
|
|
|
|
|
2010-05-19 20:38:50 +02:00
|
|
|
'set-branches'::
|
|
|
|
|
|
|
|
Changes the list of branches tracked by the named remote.
|
|
|
|
This can be used to track a subset of the available remote branches
|
|
|
|
after the initial setup for a remote.
|
|
|
|
+
|
|
|
|
The named branches will be interpreted as if specified with the
|
|
|
|
`-t` option on the 'git remote add' command line.
|
|
|
|
+
|
|
|
|
With `--add`, instead of replacing the list of currently tracked
|
|
|
|
branches, adds to that list.
|
|
|
|
|
2010-01-18 18:18:02 +01:00
|
|
|
'set-url'::
|
|
|
|
|
|
|
|
Changes URL remote points to. Sets first URL remote points to matching
|
|
|
|
regex <oldurl> (first URL if no <oldurl> is given) to <newurl>. If
|
|
|
|
<oldurl> doesn't match any URL, error occurs and nothing is changed.
|
|
|
|
+
|
|
|
|
With '--push', push URLs are manipulated instead of fetch URLs.
|
|
|
|
+
|
|
|
|
With '--add', instead of changing some URL, new URL is added.
|
|
|
|
+
|
|
|
|
With '--delete', instead of changing some URL, all URLs matching
|
|
|
|
regex <url> are deleted. Trying to delete all non-push URLs is an
|
|
|
|
error.
|
|
|
|
|
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'::
|
|
|
|
|
2010-11-02 16:31:23 +01:00
|
|
|
Deletes all stale remote-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
|
|
|
+
|
2009-08-11 02:52:07 +02:00
|
|
|
With `--dry-run` option, report what branches will be pruned, but do not
|
2008-06-10 16:51:35 +02:00
|
|
|
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,
|
2009-08-11 02:52:07 +02:00
|
|
|
the configuration parameter remotes.default will be 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
|
|
|
|
...
|
|
|
|
------------
|
|
|
|
|
2010-01-10 00:33:00 +01: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
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|