Re: [PATCH 2/2] user-manual: Document that "git merge" doesn't like uncommited changes.
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:47:45
Matthieu Moy [off-list ref] writes:
Junio C Hamano [off-list ref] writes:quoted
"but not the working tree itself" is not incorrect per-se, but misses the point. How about... A merge is made by combining the changes made in "branchname" and the changes made up to the latest commit in your current branch since their histories forke. The work tree is overwritten by the result of the merge when this combining is done cleanly, or overwritten by a half-merged results when this combining results in conflicts. Therefore, ...Maybe better. OTOH, it reveals another problem: Your "the work tree is overwritten by ..." tend to imply that the result is not commited, while the normal case is indeed to create a merge commit automatically.
Fair enough. How about changing this part
quoted
since their histories forke. The work tree is overwritten by the result of the merge when this combining is done cleanly, or overwritten by a half-merged results when this combining results
to
The work tree is overwritten by the result of the
merge when this combining is done cleanly, and the result is
committed. Otherwise it is
overwritten by a half-merged results when this combining results
?