Replies: 2 comments 2 replies
-
I think you are looking for this plugin: |
Beta Was this translation helpful? Give feedback.
2 replies
-
It has been a while so I'm not sure, but I believe I sent the changes in
batches rather than all at once.
בתאריך יום ה׳, 5 ביוני 2025, 03:08, מאת Dave ***@***.***>:
… @Akrabut <https://github.com/Akrabut> Did you end up finding a solution
for this? I'm running into the same problem when creating commits with lots
of files. Creating the blobs results in being rate limited. 😢
—
Reply to this email directly, view it on GitHub
<#2241 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AK665UHPBPFWVNX2X4NTLPT3B6DAPAVCNFSM6AAAAAB6T6NNGGVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTGMZXGMZDGMQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
My use case:
I want to commit many changes to a Github repo I control programatically by generating blobs, then generating a tree out of it, then creating a commit out of it and then a PR or a commit to a PR.
What I do:
I'm using the
octokit.js
package.I use the
createBlob
for each change.I use the created blobs to
createTree
.I use the created tree to commit.
The issue:
There doesn't seem to be a way to create blobs in batches, so I have to send several request per single file change, which results in Github (implicitly, mind you) rate limiting me.
Is there any way to create blobs in batches? if so, where is it documented?
If not, how does a remote push to Github works in case of large amount of changes?
Beta Was this translation helpful? Give feedback.
All reactions