-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Fetching a single remote branch #346
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Especially problem, when other branches are big, so checkout can take forever. |
Refs/dup: GH-285 |
This is not just inefficient; it is extremely wasteful, and it's a giant code smell. Imagine that you're dealing with the chromium code base like I am and you have to wait for 33 gigs of data to be transferred because you're not able to filter down to what you need. |
According to
And since the default value is Footnotes |
Hi, I'm currently using this action to checkout a repo so that I can prepare a release branch. The only branch I need is the default branch, however I'm noticing in the logs that this action is pulling all remote upstream branches. This is unnecessary work
Is there a way to only fetch a single branch?
In the documentation, the
ref
parameter seems related, but upon closer look this only affects what branch is checked out, not fetchedThank you!
The text was updated successfully, but these errors were encountered: