Duplicate the behaviour of Git merge for simple renaming / movement of files with minor editing on one branch and outright deletion on the other. #4
Labels
minimum viable product
Contributing to the simplest thing that is useful when it is shipped
This is similar to #3 , only this time the file is completed deleted on one branch - but is still renamed and / or moved on the other, possibly with some minor editing.
This is handled by
git merge
nicely:git status --porcelain
saysAU
for the renamed / moved file.git status --porcelain
saysUD
for the renamed / moved file.Out of scope for this is what happens when a file split on one branch (possibly with edits in either part) and deleted outright on another. That is for another story.
The text was updated successfully, but these errors were encountered: