Srinidhi Kaushik <shrinidhi.kaushik@xxxxxxxxx> writes: > diff --git a/remote.h b/remote.h > index 5e3ea5a26d..7c5e59770e 100644 > --- a/remote.h > +++ b/remote.h > @@ -104,7 +104,11 @@ struct ref { > forced_update:1, > expect_old_sha1:1, > exact_oid:1, > - deletion:1; > + deletion:1, > + /* Need to check if local reflog reaches the remote tip. */ > + check_reachable:1, > + /* The local reflog does not reach the remote tip. */ > + unreachable:1; I know the comment text above is what I suggested, but it may be more useful to readers to explain the latter as /* ... the result of the above check */ unreachable:1; Thanks.