
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 machineexplain this command
-
git-ls-remote:tldr:5ce41 git-ls-remote: Show only heads references in the default remote repository.$ git ls-remote --headstry on your machineexplain this command
-
git-ls-remote:tldr:a1d99 git-ls-remote: Show only tags references in the default remote repository.$ git ls-remote --tagstry on your machineexplain 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 machineexplain this command
-
git-ls-remote:tldr:f866e git-ls-remote: Show all references in the default remote repository.$ git ls-remotetry on your machineexplain this command