* Junio C Hamano (gitster@xxxxxxxxx) [100205 15:20]: > > - if (!quiet && !ret && !refs_pushed(remote_refs)) > > + if (!quiet && !porcelain && !ret && !refs_pushed(remote_refs)) > > fprintf(stderr, "Everything up-to-date\n"); > > This is a borderline. If you are truly up-to-date, the calling script > won't get anything. It may be easier for Porcelain scripts to see this > message on the standard output as an explicit succeses report instead. how about this? if (!quiet && (!porcelain || verbose) && !ret && !refs_pushed(remote_refs)) fprintf(stderr, "Everything up-to-date\n"); --larry -- 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