On 2/15/2022 10:59 AM, Jeff Hostetler via GitGitGadget wrote: > From: Jeff Hostetler <jeffhost@xxxxxxxxxxxxx> ... > @@ -31,5 +129,9 @@ enum fsmonitor_reason fsm_os__incompatible(struct repository *r) > if (reason) > return reason; > > + reason = is_remote(r); > + if (reason) > + return reason; > + > return FSMONITOR_REASON_ZERO; Just popping in to say that return is_virtual(r) || is_remote(r); would work here, but we might remove is_virtual(). Thanks, -Stolee