logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Git List Remote - Show Remote Git References | Online Free DevTools by Hexmos

Show remote Git references with Git List Remote. Inspect branches and tags within a remote repository using Git commands. Free online tool, no registration required.

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: https://git-scm.com/docs/git-ls-remote.

  • 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 {{[-t|--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}}"

See Also