Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create a git tree from working tree without touching the index?

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.

like image 835
dave paola Avatar asked Mar 07 '12 00:03

dave paola


1 Answers

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.

like image 53
Lily Ballard Avatar answered Oct 02 '22 13:10

Lily Ballard