compat / mkdtemp.con commit match-trees: convert shift_tree() and shift_tree_by() to use object_id (82db3d4)
   1#include "../git-compat-util.h"
   2
   3char *gitmkdtemp(char *template)
   4{
   5        if (!*mktemp(template) || mkdir(template, 0700))
   6                return NULL;
   7        return template;
   8}