I have a bit of an odd issue with a repo. I have a branch by another dev, called other, and I just merged into master some refactors that involved renaming a bunch of files.
[other] /->[normal commits]-----------------\
/ \
[master] (old)->(old)->---------->[potential file changes]--->[potentially difficultmerge due to potential file changes]
/
[otherbranch] [massive rename]/
Can I change their contents in a later commit (actually java package identification) before merging other without having to do nasty resolution of these renames? The files in question are modified in other
quite a bit.
Edit: Git-merge with recursive and patience should be able to pick up the merge nicely if it's not renamed, so would the same logic apply to renames?