Hello, I'm trying to extract multiple trees in parallel so I can create a tarball of the trees. I can't use `git archive` since it doesn't currently produce hermetic output, and I need to support older git versions. In essence what I'm trying to do is: git --work-tree ~/tmp/bob1 checkout ff27f5415797ead8bc775518a08f3a4ab24abd53 -- . & git --work-tree ~/tmp/bob2 checkout e70ebd7c76b9f9ad44b59e3002a5c57be5b9dc12 -- . & When I do this though, I get the following error: [1] 4027482 [2] 4027483 fatal: Unable to create '/home/rrangel/cros-bazel/.repo/project-objects/chromiumos/platform/vboot_reference.git/./index.lock': File exists. Another git process seems to be running in this repository, e.g. an editor opened by 'git commit'. Please make sure all processes are terminated then try again. If it still fails, a git process may have crashed in this repository earlier: remove the file manually to continue. Is this expected? I'm not sure why the index is coming into play here. Is there another method I should be using to extract a tree into a directory? If the index.lock isn't actually protecting me from anything, I was thinking of creating a symlink clone of the .git directory for each parallel invocation. This way the each index.lock gets written to its own directory: mkdir ../vboot_reference.git.1 find . -mindepth 1 -maxdepth 1 -exec echo ln -s '../vboot_reference.git/{}' ../vboot_reference.git.1/ \; mkdir ../vboot_reference.git.r2 find . -mindepth 1 -maxdepth 1 -exec echo ln -s '../vboot_reference.git/{}' ../vboot_reference.git.2/ \; git -C ../vboot_reference.git.1 --work-tree ~/tmp/bob1 checkout ff27f5415797ead8bc775518a08f3a4ab24abd53 -- . & git -C ../vboot_reference.git.2 --work-tree ~/tmp/bob2 checkout e70ebd7c76b9f9ad44b59e3002a5c57be5b9dc12 -- . & Though if there is another way to handle this it would be great. Thanks, Raul