Christian Halstrick <christian.halstrick@xxxxxxxxx> writes: > If I do a "git-rebase -i ..." followed by "git reflog expire ..." and > "git gc ..." then I can end up with a repo which has a ref ORIG_HEAD > which points to a non-existing object. > > - Is this intended? Yes. HEAD is a ref, but other things like MERGE_HEAD, ORIG_HEAD, FETCH_HEAD are not considered as refs and they are intended to be temporary. This does mean that they will become invalid if you prune objects that are only reachable from them, but your "reflog expire && gc" falls into "if it hurts, don't do it". -- 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