"Kyle Zhao via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: > From: Kyle Zhao <kylezhao@xxxxxxxxxxx> > > When running a merge while the index is locked (presumably by another > process), the merge state is written, the index is not updated, and then > the merge fails. This might cause unexpected results. Failing the merge is good thing. > E.g., if another running process is "git commit", MERGE_HEAD and other > state files we write on our side will be taken into account by them and > cause them to record a merge, even though they may have been trying to > record something entirely different. If I recall the previous discussion correctly, I think the primary thing this change achieves is to get us closer to a state where competing commands (a "git commit" run while we are doing something else like "git merge") take the index.lock as the first thing (so others are blocked), before making auxiliary files like MERGE_HEAD that would affect the behaviour of whoever has index.lock (and thus making a new commit). And that is what we need to stress in the proposed log message, I would think. But this is probably only half-a-solution. > Signed-off-by: Kyle Zhao <kylezhao@xxxxxxxxxxx> > --- > diff --git a/builtin/merge.c b/builtin/merge.c > index 6a6d3798858..12c1b048fe1 100644 > --- a/builtin/merge.c > +++ b/builtin/merge.c > @@ -699,7 +699,7 @@ static int try_merge_strategy(const char *strategy, struct commit_list *common, > if (repo_refresh_and_write_index(the_repository, REFRESH_QUIET, > SKIP_IF_UNCHANGED, 0, NULL, NULL, > NULL) < 0) > - return error(_("Unable to write index.")); > + die(_("Unable to write index.")); > > if (!strcmp(strategy, "recursive") || !strcmp(strategy, "subtree") || > !strcmp(strategy, "ort")) { If we fail to write the index here, even if we have other strategies to try after the current one fails, it probably is a good idea to die and stop the other ones from being tried, not because their attempt to write the index might fail the same way, but because it is likely that we are really in a weird situation and the user would want to inspect the situation before this process makes too much damage to the working tree and the index. But this is probably only half-a-solution. Because we release the index.lock when the refresh-and-write call returns, and the index.lock is free for the other process to grab, do whatever they want to do to the index and the working tree (including making a new commit out of it and update the HEAD), before or after we write out the merge state files. So in that sense, this patch is *not* solving the "E.g., if another running process is ..." problem at all. So ... > diff --git a/t/t7600-merge.sh b/t/t7600-merge.sh > index e5ff073099a..ef54cff4faa 100755 > --- a/t/t7600-merge.sh > +++ b/t/t7600-merge.sh > @@ -236,6 +236,16 @@ test_expect_success 'merge c1 with c2' ' > verify_parents $c1 $c2 > ' > > +test_expect_success 'merge c1 with c2 when index.lock exists' ' > + test_when_finished rm .git/index.lock && > + git reset --hard c1 && > + >.git/index.lock && > + test_must_fail git merge c2 && > + test_path_is_missing .git/MERGE_HEAD && > + test_path_is_missing .git/MERGE_MODE && > + test_path_is_missing .git/MERGE_MSG ... I do not quite see the point of this exercise. It is good to make sure that "git merge c2" fails while it is clear that somebody else is mucking with the same repository touching the index. But it does not help the other process all that much if we stop only when they happen to be holding lock at the point we try to refresh the index. It is making the race window smaller by a tiny bit. So, I am not sure if this is worth doing.