Replies: 1 comment 1 reply
-
I think you are looking for this plugin: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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