I'm creating a tool that will allow people to store "solutions" to tests. Since I don't want to reinvent version control, I decided to use git's tree/blob/object stuff -- my idea is to create a git tree object out of the current working directory.
The problem is that I want this tool to not touch the state of the user's repository, except to look up hashes to existing objects of course.
I've looked at both mktree
and write-tree
, and the former needs ls-tree
output and the latter needs to examine the index. Neither of these are what I want.
I'm happy to dive deeper and write the analogs of these commands for the working tree, however I'm having trouble figuring out any lower-level git tools to manipulate trees, blobs, and objects.
Ideally, the user will be able to run:
$ git create-tree .
and git will spit out the hash of the newly created tree object.
Using git mktree
is certainly doable. It reads in ls-tree
-formatted text, but you can generate that yourself using whatever mechanism you want.
That said, it may be easier to go ahead and use the index. After all, you're free to specify whatever location you want as the index, via the GIT_INDEX_FILE
environment variable. Just set this var to point at some temporary location, create your index however you want, create your tree, and then reset the env var and throw away the temporary index.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With