Creating a pack
#692
-
I'm writing a tiny git server. It needs a way to construct a pack for sending over the network. |
Beta Was this translation helpful? Give feedback.
Answered by
Byron
Jan 19, 2023
Replies: 1 comment
-
I hope that helps. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
suhr
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
gix free pack create -h
allows to build packs from the command-line, and its implementation can be used as guide on how to use the plumbing-level API for that.I hope that helps.