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
Avoid using github_fast_path for the initial clone of a repository. This would require using git clone instead of git init + git fetch, and using the --branch argument to resolve refspecs.
The text was updated successfully, but these errors were encountered:
That discussion is mostly unrelated to this. The GitHub fast path primarily tells us if the commit we have is up to date, so we shouldn't need to take it for the initial clone.
Don't we need to figure out the precise commit from (e.g.) the branch / tag though? I thought we skipped this anyway if we had a precise commit already, and that the fast path was mostly for that operation.
Avoid using
github_fast_path
for the initial clone of a repository. This would require usinggit clone
instead ofgit init
+git fetch
, and using the--branch
argument to resolve refspecs.The text was updated successfully, but these errors were encountered: