On 12-07-25 05:52 PM, Junio C Hamano wrote: > Paul Gortmaker <paul.gortmaker@xxxxxxxxxxxxx> writes: > >> Has anyone else noticed false positives coming from the >> orphan check? > > Thanks. This should fix it. Indeed it does. Thanks for the fix (and git in general). Paul. -- > > builtin/checkout.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/builtin/checkout.c b/builtin/checkout.c > index 6acca75..d812219 100644 > --- a/builtin/checkout.c > +++ b/builtin/checkout.c > @@ -606,7 +606,7 @@ static int add_pending_uninteresting_ref(const char *refname, > const unsigned char *sha1, > int flags, void *cb_data) > { > - add_pending_sha1(cb_data, refname, sha1, flags | UNINTERESTING); > + add_pending_sha1(cb_data, refname, sha1, UNINTERESTING); > return 0; > } > > -- 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