I changed some Project Directories from my project in Visual Studio. How can I push the changes to git and make it applied to others who pulled my update or checked out my branch?
Asked
Active
Viewed 450 times
0
-
Please clarify your question. Which files are affected by changing 'project directories'? Are you asking how to push changes to your vcxproj or csproj file? – stijn Apr 27 '16 at 06:51
-
I changed the path in Output Directory of my project (project > properties > config properties > general > output directory), when I pushed it to our git, the changes did not apply to the person who pulled my update. Note: I only pushed the .vcxproj .. Is this wrong? – Z Mars Apr 27 '16 at 06:57
-
So the commit diff shows a change like `
changedDir `, and that line is there after pulling as well, right? In that case there is nothing git can do to solve this, as it would mean on the other machine there is something overriding the OutDir property, thereby ignoring any changes you make to it. – stijn Apr 27 '16 at 07:02 -
I already fixed it. It happens that Im using different Checkout project and committed the empty changes. I have now encountered the
when I changed the properties using the correct Clone of the project. Im sorry. :) But thank you so much :) – Z Mars Apr 27 '16 at 08:29