Dmitry Ivankov wrote: > --- a/fast-import.c > +++ b/fast-import.c > @@ -1474,8 +1474,11 @@ static void store_tree(struct tree_entry *root) > return; > > for (i = 0; i < t->entry_count; i++) { > - if (t->entries[i]->tree) > - store_tree(t->entries[i]); > + if (!S_ISDIR(t->entries[i]->versions[1].mode)) > + continue; > + if (!t->entries[i]->tree) > + load_tree(t->entries[i]); > + store_tree(t->entries[i]); How can this load_tree call work if t->entries[i]->versions[1].sha1 is not already in the object database? -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html