-
I am looking into using Gitoxide as a library to download the file tree at a given commit (or branch) from a remote repository. Is this use-case already supported? Is there an example somewhere? |
Beta Was this translation helpful? Give feedback.
Answered by
Byron
Mar 16, 2022
Replies: 1 comment
-
Thanks for your interest. I think doing that is possible, even though I have not done that before. Here is the rough steps that I anticipate.
I hope that helps. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Byron
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for your interest. I think doing that is possible, even though I have not done that before.
Here is the rough steps that I anticipate.
git-odb
crate to access the objects within, which includes breadth-first tree traversal in thegit-traverse
crate.I hope that helps.