So a guy and I are working on a branch, and I've got some configuration files that only I use, something like this:
A-FILE 1 A-FILE 2 A-FILE 3 B-FILE 1 B-FILE 2
A-FILES 1-2-3 are files that I will later commit, but B-FILES 1-2 are files that only I need, I don't want to commit them nor stash them.
So, I need to make a pull now to update my project with the other guy's changes, but git tells me I can't because my changes over B-FILES 1-2 will be overwritten by the pull.
No idea what to do in these cases, any advice is welcome.