Open Bauxitedev opened 3 years ago
libgit2 supports creating an in-memory repository that doesn't write to disk at all. This is useful for applications that only need to clone a repo once to do some analysis and then discard them.
See https://stackoverflow.com/a/39864196 for an example.
It seems git2-rs does not support this.. Or haven't I looked hard enough?
It's not the supported at the moment, but is there an attempt to implement it?
This would be cool but seems very hard
libgit2 supports creating an in-memory repository that doesn't write to disk at all. This is useful for applications that only need to clone a repo once to do some analysis and then discard them.
See https://stackoverflow.com/a/39864196 for an example.
It seems git2-rs does not support this.. Or haven't I looked hard enough?