I want to merge master branch into my development branch. While in my development branch, I execute the following:
''' git pull origin master'''
When I do this, the merge finishes, however, I notice very odd behavior. It seems that a folder in master is so similar to my branch, it treats them as the same folder.
I have tried creating a new branch from master and pull in the changes from development into master, but it does the same thing. It treats the folders as if they are the same.
For example, I have the following:
Master src->folder1
Development src->folder2
After the merge, I get
Developement src->folder1
instead of
Developement src->folder1 src->folder2
EDIT: The file names are mostly identical, however, the contents of the files are not identical at all. Development is done in C++, so the namespaces make it clear who is what.
EDIT: Hey gang, I tried the recommendations, however, git was still doing the renaming. Instead, I just branched from master and brought in the folders I needed. Now when I merge master, it is always up-to-date. Thanks for all the suggestions!