You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently gitoxide relies on shelling this out to the git upload-pack binary which isn't necessarily available on all systems. Instead, we must implement the server side of the fetch operation ourselves and use it.
Key Features
Shallow support
Cargo supports shallow clones, and ideally these also work locally just like when using git
Protocol V2
Probably V1 can be skipped
The text was updated successfully, but these errors were encountered:
Byron
changed the title
built-in support for the file protocol - i.e. must not rely on the git binary.
built-in support for the file protocol
Feb 13, 2023
Looking forward to this, it would be great if gix can support --local to use hardlinks to avoid copying .git or --shared to avoid copying any objects at all when dealing with local repositories.
Currently
gitoxide
relies on shelling this out to thegit upload-pack
binary which isn't necessarily available on all systems. Instead, we must implement the server side of thefetch
operation ourselves and use it.Key Features
git
The text was updated successfully, but these errors were encountered: