On Sun, Nov 11, 2012 at 2:59 PM, Felipe Contreras <felipe.contreras@xxxxxxxxx> wrote: > --- a/builtin/fast-export.c > +++ b/builtin/fast-export.c > @@ -529,7 +529,9 @@ static void get_tags_and_duplicates(struct object_array *pending, > * sure it gets properly upddated eventually. > */ > if (commit->util || commit->object.flags & SHOWN) > - string_list_append(extra_refs, full_name)->util = commit; > + if (!(commit->object.flags & UNINTERESTING)) > + string_list_append(extra_refs, full_name)->util = commit; > + > if (!commit->util) > commit->util = full_name; > } There is one case where this can cause problems. I'm about to send another patch series where I fix transport-helper to behave more properly, and in doing so it sends things such as '^old-master master new', and if new points to master, there's a problem. This means the user would have to do 'git push new', instead of 'git push --all'. The transport-helper could do the reset itself, but that would require parsing the marks. A simpler solution for this is proposed in the next patch series. Cheers. -- Felipe Contreras -- 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