You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the upstream version fetching relies on the git ls-remote command. There should be a fallback in place when git is not available on the system which queries tags via the GitHub Rest API.
The text was updated successfully, but these errors were encountered:
Well, fetching the list of tags via the REST API is actually way faster than using git ls-remote --tags. So, the default behavior will be the REST API request and git ls-remote --tags will be used as fallback if the API request fails.
Here you can see the results of benchmarking goup lsr using hyperfine with 3 warmup runs and 20 benchmark runs.
Currently, the upstream version fetching relies on the
git ls-remotecommand. There should be a fallback in place whengitis not available on the system which queries tags via the GitHub Rest API.The text was updated successfully, but these errors were encountered: