5fdd83bc1d2664e1aee0b44d43478c5d74990ce8
[git.git] / man1 / git-ls-remote.1
1 .\"Generated by db2man.xsl. Don't modify this, modify the source.
2 .de Sh \" Subsection
3 .br
4 .if t .Sp
5 .ne 5
6 .PP
7 \fB\\$1\fR
8 .PP
9 ..
10 .de Sp \" Vertical space (when we can't use .PP)
11 .if t .sp .5v
12 .if n .sp
13 ..
14 .de Ip \" List item
15 .br
16 .ie \\n(.$>=3 .ne \\$3
17 .el .ne 3
18 .IP "\\$1" \\$2
19 ..
20 .TH "GIT-LS-REMOTE" 1 "" "" ""
21 .SH NAME
22 git-ls-remote \- Look at references other repository has.
23 .SH "SYNOPSIS"
24
25
26 git\-ls\-remote [\-\-heads] [\-\-tags] <repository> <refs>...
27
28 .SH "DESCRIPTION"
29
30
31 Displays the references other repository has\&.
32
33 .SH "OPTIONS"
34
35 .TP
36 \-h|\-\-heads, \-t|\-\-tags
37 Limit to only refs/heads and refs/tags, respectively\&. These options are _not_ mutually exclusive; when given both, references stored in refs/heads and refs/tags are displayed\&.
38
39 .TP
40 <repository>
41 Location of the repository\&. The shorthand defined in $GIT_DIR/branches/ can be used\&.
42
43 .TP
44 <refs>...
45 When unspecified, all references, after filtering done with \-\-heads and \-\-tags, are shown\&. When <refs>... are specified, only references matching the given patterns are displayed\&.
46
47 .SH "EXAMPLES"
48
49 .nf
50 $ git ls\-remote \-\-tags \&./\&.
51 d6602ec5194c87b0fc87103ca4d67251c76f233a        refs/tags/v0\&.99
52 f25a265a342aed6041ab0cc484224d9ca54b6f41        refs/tags/v0\&.99\&.1
53 7ceca275d047c90c0c7d5afb13ab97efdf51bd6e        refs/tags/v0\&.99\&.3
54 c5db5456ae3b0873fc659c19fafdde22313cc441        refs/tags/v0\&.99\&.2
55 0918385dbd9656cab0d1d81ba7453d49bbc16250        refs/tags/junio\-gpg\-pub
56 $ git ls\-remote http://www\&.kernel\&.org/pub/scm/git/git\&.git master pu rc
57 5fe978a5381f1fbad26a80e682ddd2a401966740        refs/heads/master
58 c781a84b5204fb294c9ccc79f8b3baceeb32c061        refs/heads/pu
59 b1d096f2926c4e37c9c0b6a7bf2119bedaa277cb        refs/heads/rc
60 $ echo http://www\&.kernel\&.org/pub/scm/git/git\&.git >\&.git/branches/public
61 $ git ls\-remote \-\-tags public v\\*
62 d6602ec5194c87b0fc87103ca4d67251c76f233a        refs/tags/v0\&.99
63 f25a265a342aed6041ab0cc484224d9ca54b6f41        refs/tags/v0\&.99\&.1
64 c5db5456ae3b0873fc659c19fafdde22313cc441        refs/tags/v0\&.99\&.2
65 7ceca275d047c90c0c7d5afb13ab97efdf51bd6e        refs/tags/v0\&.99\&.3
66 .fi
67
68 .SH "AUTHOR"
69
70
71 Written by Junio C Hamano <junkio@cox\&.net>
72
73 .SH "GIT"
74
75
76 Part of the \fBgit\fR(7) suite
77