2007-07-05 00:21:36 +02:00
|
|
|
include::urls.txt[]
|
|
|
|
|
2008-05-29 19:32:31 +02:00
|
|
|
REMOTES[[REMOTES]]
|
|
|
|
------------------
|
2007-07-05 00:21:36 +02:00
|
|
|
|
2008-05-29 19:32:31 +02:00
|
|
|
The name of one of the following can be used instead
|
|
|
|
of a URL as `<repository>` argument:
|
2007-07-05 00:21:36 +02:00
|
|
|
|
2008-05-29 19:32:31 +02:00
|
|
|
* a remote in the git configuration file: `$GIT_DIR/config`,
|
|
|
|
* a file in the `$GIT_DIR/remotes` directory, or
|
|
|
|
* a file in the `$GIT_DIR/branches` directory.
|
2007-07-05 00:21:36 +02:00
|
|
|
|
2008-05-29 19:32:31 +02:00
|
|
|
All of these also allow you to omit the refspec from the command line
|
|
|
|
because they each contain a refspec which git will use by default.
|
2007-07-05 00:21:36 +02:00
|
|
|
|
2008-05-29 19:32:31 +02:00
|
|
|
Named remote in configuration file
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2007-07-05 00:21:36 +02:00
|
|
|
|
2008-05-29 19:32:31 +02:00
|
|
|
You can choose to provide the name of a remote which you had previously
|
|
|
|
configured using linkgit:git-remote[1], linkgit:git-config[1]
|
|
|
|
or even by a manual edit to the `$GIT_DIR/config` file. The URL of
|
|
|
|
this remote will be used to access the repository. The refspec
|
|
|
|
of this remote will be used by default when you do
|
|
|
|
not provide a refspec on the command line. The entry in the
|
|
|
|
config file would appear like this:
|
2007-07-05 00:21:36 +02:00
|
|
|
|
|
|
|
------------
|
2008-05-29 19:32:31 +02:00
|
|
|
[remote "<name>"]
|
2007-07-05 00:21:36 +02:00
|
|
|
url = <url>
|
|
|
|
push = <refspec>
|
|
|
|
fetch = <refspec>
|
|
|
|
------------
|
|
|
|
|
2008-05-29 19:32:31 +02:00
|
|
|
|
|
|
|
Named file in `$GIT_DIR/remotes`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
You can choose to provide the name of a
|
|
|
|
file in `$GIT_DIR/remotes`. The URL
|
|
|
|
in this file will be used to access the repository. The refspec
|
|
|
|
in this file will be used as default when you do not
|
|
|
|
provide a refspec on the command line. This file should have the
|
|
|
|
following format:
|
|
|
|
|
|
|
|
------------
|
|
|
|
URL: one of the above URL format
|
|
|
|
Push: <refspec>
|
|
|
|
Pull: <refspec>
|
2007-07-05 00:21:36 +02:00
|
|
|
|
|
|
|
------------
|
|
|
|
|
2008-07-03 07:41:41 +02:00
|
|
|
`Push:` lines are used by 'git-push' and
|
|
|
|
`Pull:` lines are used by 'git-pull' and 'git-fetch'.
|
2008-05-29 19:32:31 +02:00
|
|
|
Multiple `Push:` and `Pull:` lines may
|
|
|
|
be specified for additional branch mappings.
|
|
|
|
|
|
|
|
Named file in `$GIT_DIR/branches`
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
You can choose to provide the name of a
|
|
|
|
file in `$GIT_DIR/branches`.
|
|
|
|
The URL in this file will be used to access the repository.
|
|
|
|
This file should have the following format:
|
|
|
|
|
|
|
|
|
|
|
|
------------
|
|
|
|
<url>#<head>
|
2007-07-05 00:21:36 +02:00
|
|
|
------------
|
|
|
|
|
2008-05-29 19:32:31 +02:00
|
|
|
`<url>` is required; `#<head>` is optional.
|
2008-11-10 22:47:11 +01:00
|
|
|
|
|
|
|
Depending on the operation, git will use one of the following
|
|
|
|
refspecs, if you don't provide one on the command line.
|
|
|
|
`<branch>` is the name of this file in `$GIT_DIR/branches` and
|
|
|
|
`<head>` defaults to `master`.
|
|
|
|
|
|
|
|
git fetch uses:
|
|
|
|
|
|
|
|
------------
|
|
|
|
refs/heads/<head>:refs/heads/<branch>
|
|
|
|
------------
|
|
|
|
|
|
|
|
git push uses:
|
2007-07-05 00:21:36 +02:00
|
|
|
|
|
|
|
------------
|
2008-11-10 22:47:11 +01:00
|
|
|
HEAD:refs/heads/<head>
|
2007-07-05 00:21:36 +02:00
|
|
|
------------
|
2008-05-29 19:32:31 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|