Merge branch 'ft/doc-git-transport' into maint
[git/jrn.git] / Documentation / urls.txt
blob64dae20b00fffc3acb0866a6c96d27f89ae2af23
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 supports ssh, git, http, and https protocols (in addition, ftp,
10 and ftps can be used for fetching and rsync can be used for fetching
11 and pushing, but these are inefficient and deprecated; do not use
12 them).
14 The native transport (i.e. git:// URL) does no authentication and
15 should be used with caution on unsecured networks.
17 The following syntaxes may be used with them:
19 - ssh://{startsb}user@{endsb}host.xz{startsb}:port{endsb}/path/to/repo.git/
20 - git://host.xz{startsb}:port{endsb}/path/to/repo.git/
21 - http{startsb}s{endsb}://host.xz{startsb}:port{endsb}/path/to/repo.git/
22 - ftp{startsb}s{endsb}://host.xz{startsb}:port{endsb}/path/to/repo.git/
23 - rsync://host.xz/path/to/repo.git/
25 An alternative scp-like syntax may also be used with the ssh protocol:
27 - {startsb}user@{endsb}host.xz:path/to/repo.git/
29 The ssh and git protocols additionally support ~username expansion:
31 - ssh://{startsb}user@{endsb}host.xz{startsb}:port{endsb}/~{startsb}user{endsb}/path/to/repo.git/
32 - git://host.xz{startsb}:port{endsb}/~{startsb}user{endsb}/path/to/repo.git/
33 - {startsb}user@{endsb}host.xz:/~{startsb}user{endsb}/path/to/repo.git/
35 For local repositories, also supported by Git natively, the following
36 syntaxes may be used:
38 - /path/to/repo.git/
39 - \file:///path/to/repo.git/
41 ifndef::git-clone[]
42 These two syntaxes are mostly equivalent, except when cloning, when
43 the former implies --local option. See linkgit:git-clone[1] for
44 details.
45 endif::git-clone[]
47 ifdef::git-clone[]
48 These two syntaxes are mostly equivalent, except the former implies
49 --local option.
50 endif::git-clone[]
52 When Git doesn't know how to handle a certain transport protocol, it
53 attempts to use the 'remote-<transport>' remote helper, if one
54 exists. To explicitly request a remote helper, the following syntax
55 may be used:
57 - <transport>::<address>
59 where <address> may be a path, a server and path, or an arbitrary
60 URL-like string recognized by the specific remote helper being
61 invoked. See linkgit:gitremote-helpers[1] for details.
63 If there are a large number of similarly-named remote repositories and
64 you want to use a different format for them (such that the URLs you
65 use will be rewritten into URLs that work), you can create a
66 configuration section of the form:
68 ------------
69         [url "<actual url base>"]
70                 insteadOf = <other url base>
71 ------------
73 For example, with this:
75 ------------
76         [url "git://git.host.xz/"]
77                 insteadOf = host.xz:/path/to/
78                 insteadOf = work:
79 ------------
81 a URL like "work:repo.git" or like "host.xz:/path/to/repo.git" will be
82 rewritten in any context that takes a URL to be "git://git.host.xz/repo.git".
84 If you want to rewrite URLs for push only, you can create a
85 configuration section of the form:
87 ------------
88         [url "<actual url base>"]
89                 pushInsteadOf = <other url base>
90 ------------
92 For example, with this:
94 ------------
95         [url "ssh://example.org/"]
96                 pushInsteadOf = git://example.org/
97 ------------
99 a URL like "git://example.org/path/to/repo.git" will be rewritten to
100 "ssh://example.org/path/to/repo.git" for pushes, but pulls will still
101 use the original URL.