On Mon, Jan 18, 2021 at 02:45:30PM -0800, Junio C Hamano wrote: > Patrick Steinhardt writes: > > > Inputs of the reference-transaction hook currently depends on the > > command which is being run. For example if the command `git update-ref > > $REF $A $B` is executed, it will receive "$B $A $REF" as input, but if > > the command `git update-ref $REF $A` is executed without providing the > > old value, then it will receive "0*40 $A $REF" as input. This is due to > > the fact that we directly write queued transaction updates into the > > hook's standard input, which will not contain the old object value in > > case it wasn't provided. > > In effect, the user says "I do not care if this update races with > somebody else and it is perfectly OK if it overwrites their update" > by not giving $B. > > > While this behaviour reflects what is happening as part of the > > repository, it doesn't feel like it is useful. The main intent of the > > reference-transaction hook is to be able to completely audit all > > reference updates, no matter where they come from. As such, it makes a > > lot more sense to always provide actual values instead of what the user > > wanted. Furthermore, it's impossible for the hook to distinguish whether > > this is intended to be a branch creation or a branch update without > > doing additional digging with the current format. > > But shouldn't the transaction hook script be allowed to learn the > end-user intention and behave differently? If we replace the > missing old object before calling the script, wouldn't it lose > information? > > The above is not an objection posed as two rhetoric questions. I am > purely curious why losing information is OK in this case, or why it > may not be so OK but should still be acceptable because it is lessor > evil than giving 0{40} to the hooks. > > Even without this change, the current value the hook can learn by > looking the ref up itself if it really wanted to, no? I think the biggest problem is that right now, you cannot discern the actual intention of the user because the information provided to the hook is ambiguous in the branch creation case: "$ZERO_OID $NEW_OID $REF" could mean the user intends to create a new branch where it shouldn't have existed previously. BUT it could also mean that the user just doesn't care what the reference previously pointed to. The user could now try to derive the intention by manually looking up the current state of the reference. But that does feel kind of awkward to me. To me, having clearly defined semantics ("The script always gets old and new value of the branch regardless of what the user did") is preferable to having ambiguous semantics. Patrick