Forrest logo
back to context overview

git-ls-remote

List of commands for git-ls-remote:

  • git-ls-remote:tldr:01cc7 git-ls-remote: Show references from a remote repository filtered by a pattern.
    $ git ls-remote ${repository_name} "${pattern}"
    try on your machine
    explain this command
  • git-ls-remote:tldr:5ce41 git-ls-remote: Show only heads references in the default remote repository.
    $ git ls-remote --heads
    try on your machine
    explain this command
  • git-ls-remote:tldr:a1d99 git-ls-remote: Show only tags references in the default remote repository.
    $ git ls-remote --tags
    try on your machine
    explain this command
  • git-ls-remote:tldr:e32a4 git-ls-remote: Show all references from a remote repository based on name or URL.
    $ git ls-remote ${repository_url}
    try on your machine
    explain this command
  • git-ls-remote:tldr:f866e git-ls-remote: Show all references in the default remote repository.
    $ git ls-remote
    try on your machine
    explain this command
back to context overview