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 mktreeis certainly doable. It reads inls-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_FILEenvironment 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.