I am programming a software in C++ on two PCs running Windows with a slightly different Visual Studio configuration, but both still compatible with the project.
To keep all in sync I'm using Github and because of the slight differences I want to keep the .vcxproj files out of the synchronization, but I'm failing.
Inside all the .gitignore files I have these two lines
*.vcxproj
*.vcxproj.filters
and each time one of the vcxproj file is updated, it wants to be committed.
Its worth saying that it was not like this from the beginning, I added the vcxproj files into the .gitignore after some commit and push, does that have any role in my problem?
How can I fix that?
To keep all in sync I'm using Github and because of the slight differences I want to keep the .vcxproj files out of the synchronization, but I'm failing.
Inside all the .gitignore files I have these two lines
*.vcxproj
*.vcxproj.filters
and each time one of the vcxproj file is updated, it wants to be committed.
Its worth saying that it was not like this from the beginning, I added the vcxproj files into the .gitignore after some commit and push, does that have any role in my problem?
How can I fix that?