Martin Waitz <tali@xxxxxxxxxxxxxx> writes: > I have no idea why there is a --update-head-ok, but the code looks > like it has a typo: I looked at it again, and indeed it looks like a typo. > @@ -433,7 +433,7 @@ esac > # If the original head was empty (i.e. no "master" yet), or > # if we were told not to worry, we do not have to check. > case ",$update_head_ok,$orig_head," in > -*,, | t,* ) > +*,, | ,t,* ) > ;; > *) > curr_head=$(git-rev-parse --verify HEAD 2>/dev/null) Interestingly enough, when update_head_ok is set, orig_head never is so the typo does not matter at all by pure accident (it was there from the very first version that introduced this feature). It should just be something like this: case "$orig_head" in '') ;; ?*) curr_head=$(git-rev-parse --verify HEAD 2>/dev/null) ... - 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