-
I am looking at how I can possibly build a basic Git HTTPS service that allows (clone, push) for branches and tags. Googling around, I came across gitoxide and wondered if the following script alias examples are now replaceable?
The intention is to build a git mirror for an air-gapped environment. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Thanks for your interest!
The short answer is: no. The longer answer: Even though clients are able to receive packs with something akin to Thus I am recommending to subscribe to this tracking issue for updates on progress off the server side. I hope that helps. |
Beta Was this translation helpful? Give feedback.
Thanks for your interest!
The short answer is: no.
The longer answer: Even though clients are able to receive packs with something akin to
git-receive-pack
, I am pretty sure that operating it on a server requires bits and pieces of the protocol which aren't implemented yet.And even though packs can already be created with decent performance, it's not yet able to do something equivalent to
git-upload-pack
.Thus I am recommending to subscribe to this tracking issue for updates on progress off the server side.
I hope that helps.