'\" t .\" Title: git-ls-remote .\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author] .\" Generator: DocBook XSL Stylesheets vsnapshot .\" Date: 01/05/2024 .\" Manual: Git Manual .\" Source: Git 2.43.0.381.gb435a96ce8 .\" Language: English .\" .TH "GIT\-LS\-REMOTE" "1" "01/05/2024" "Git 2\&.43\&.0\&.381\&.gb435a9" "Git Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .\" http://bugs.debian.org/507673 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .\" ----------------------------------------------------------------- .\" * MAIN CONTENT STARTS HERE * .\" ----------------------------------------------------------------- .SH "NAME" git-ls-remote \- List references in a remote repository .SH "SYNOPSIS" .sp .nf \fIgit ls\-remote\fR [\-\-heads] [\-\-tags] [\-\-refs] [\-\-upload\-pack=] [\-q | \-\-quiet] [\-\-exit\-code] [\-\-get\-url] [\-\-sort=] [\-\-symref] [ [\&...]] .fi .sp .SH "DESCRIPTION" .sp Displays references available in a remote repository along with the associated commit IDs\&. .SH "OPTIONS" .PP \-h, \-\-heads, \-t, \-\-tags .RS 4 Limit to only refs/heads and refs/tags, respectively\&. These options are \fInot\fR mutually exclusive; when given both, references stored in refs/heads and refs/tags are displayed\&. Note that \fBgit ls\-remote \-h\fR used without anything else on the command line gives help, consistent with other git subcommands\&. .RE .PP \-\-refs .RS 4 Do not show peeled tags or pseudorefs like \fBHEAD\fR in the output\&. .RE .PP \-q, \-\-quiet .RS 4 Do not print remote URL to stderr\&. .RE .PP \-\-upload\-pack= .RS 4 Specify the full path of \fIgit\-upload\-pack\fR on the remote host\&. This allows listing references from repositories accessed via SSH and where the SSH daemon does not use the PATH configured by the user\&. .RE .PP \-\-exit\-code .RS 4 Exit with status "2" when no matching refs are found in the remote repository\&. Usually the command exits with status "0" to indicate it successfully talked with the remote repository, whether it found any matching refs\&. .RE .PP \-\-get\-url .RS 4 Expand the URL of the given remote repository taking into account any "url\&.\&.insteadOf" config setting (See \fBgit-config\fR(1)) and exit without talking to the remote\&. .RE .PP \-\-symref .RS 4 In addition to the object pointed by it, show the underlying ref pointed by it when showing a symbolic ref\&. Currently, upload\-pack only shows the symref HEAD, so it will be the only one shown by ls\-remote\&. .RE .PP \-\-sort= .RS 4 Sort based on the key given\&. Prefix \fB\-\fR to sort in descending order of the value\&. Supports "version:refname" or "v:refname" (tag names are treated as versions)\&. The "version:refname" sort order can also be affected by the "versionsort\&.suffix" configuration variable\&. See \fBgit-for-each-ref\fR(1) for more sort options, but be aware keys like \fBcommitterdate\fR that require access to the objects themselves will not work for refs whose objects have not yet been fetched from the remote, and will give a \fBmissing object\fR error\&. .RE .PP \-o