-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

git ls-remote


> Git command for listing references in a remote repository based on name or URL.

> If no name or URL are given, then the configured upstream branch will be used, or remote origin if the former is not configured.

More information.


Show all references in the default remote repository:

git ls-remote

Show only heads references in the default remote repository:

git ls-remote --heads

Show only tags references in the default remote repository:

git ls-remote --tags

Show all references from a remote repository based on name or URL:

git ls-remote {repository_url}

Show references from a remote repository filtered by a pattern:

git ls-remote {repository_name} "{pattern}"


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Tue May 21 08:20:41 2024