Merge branch 'cb/maint-orphan-merge-noclobber'
[git/kirr.git] / Documentation / urls.txt
blob289019478d16719e5d2c86b7a17017005bd9a80d
1 GIT URLS[[URLS]]
2 ----------------
4 In general, URLs contain information about the transport protocol, the
5 address of the remote server, and the path to the repository.
6 Depending on the transport protocol, some of this information may be
7 absent.
9 Git natively supports ssh, git, http, https, ftp, ftps, and rsync
10 protocols. The following syntaxes may be used with them:
12 - ssh://{startsb}user@{endsb}host.xz{startsb}:port{endsb}/path/to/repo.git/
13 - git://host.xz{startsb}:port{endsb}/path/to/repo.git/
14 - http{startsb}s{endsb}://host.xz{startsb}:port{endsb}/path/to/repo.git/
15 - ftp{startsb}s{endsb}://host.xz{startsb}:port{endsb}/path/to/repo.git/
16 - rsync://host.xz/path/to/repo.git/
18 An alternative scp-like syntax may also be used with the ssh protocol:
20 - {startsb}user@{endsb}host.xz:path/to/repo.git/
22 The ssh and git protocols additionally support ~username expansion:
24 - ssh://{startsb}user@{endsb}host.xz{startsb}:port{endsb}/~{startsb}user{endsb}/path/to/repo.git/
25 - git://host.xz{startsb}:port{endsb}/~{startsb}user{endsb}/path/to/repo.git/
26 - {startsb}user@{endsb}host.xz:/~{startsb}user{endsb}/path/to/repo.git/
28 For local repositories, also supported by git natively, the following
29 syntaxes may be used:
31 - /path/to/repo.git/
32 - file:///path/to/repo.git/
34 ifndef::git-clone[]
35 These two syntaxes are mostly equivalent, except when cloning, when
36 the former implies --local option. See linkgit:git-clone[1] for
37 details.
38 endif::git-clone[]
40 ifdef::git-clone[]
41 These two syntaxes are mostly equivalent, except the former implies
42 --local option.
43 endif::git-clone[]
45 When git doesn't know how to handle a certain transport protocol, it
46 attempts to use the 'remote-<transport>' remote helper, if one
47 exists. To explicitly request a remote helper, the following syntax
48 may be used:
50 - <transport>::<address>
52 where <address> may be a path, a server and path, or an arbitrary
53 URL-like string recognized by the specific remote helper being
54 invoked. See linkgit:git-remote-helpers[1] for details.
56 If there are a large number of similarly-named remote repositories and
57 you want to use a different format for them (such that the URLs you
58 use will be rewritten into URLs that work), you can create a
59 configuration section of the form:
61 ------------
62         [url "<actual url base>"]
63                 insteadOf = <other url base>
64 ------------
66 For example, with this:
68 ------------
69         [url "git://git.host.xz/"]
70                 insteadOf = host.xz:/path/to/
71                 insteadOf = work:
72 ------------
74 a URL like "work:repo.git" or like "host.xz:/path/to/repo.git" will be
75 rewritten in any context that takes a URL to be "git://git.host.xz/repo.git".
77 If you want to rewrite URLs for push only, you can create a
78 configuration section of the form:
80 ------------
81         [url "<actual url base>"]
82                 pushInsteadOf = <other url base>
83 ------------
85 For example, with this:
87 ------------
88         [url "ssh://example.org/"]
89                 pushInsteadOf = git://example.org/
90 ------------
92 a URL like "git://example.org/path/to/repo.git" will be rewritten to
93 "ssh://example.org/path/to/repo.git" for pushes, but pulls will still
94 use the original URL.