I am trying to figure out how to push partial file changes from my local git repo to a tfs git project.
For some background, I have a project that uses an external wsdl. I have a local dev instance of the wsdl on my machine, and the production application will run on a production version of the wsdl hosted on a different server. I have the project in my local git repository pointed to my local dev wsdl, and the production project in tfs pointed to the remotely hosted wsdl.
My issue is that when I push code changes from my local dev repo to the tfs repo, I don’t want my connections to the dev wsdl being pushed with the changes. My end goal is to be able to make code changes, bug fixes, etc, and push those to the tfs repo without changing any of the production configurations.
I may be going about this incorrectly, but figuring out the best way to tackle this is why I’m here. Are there specific procedures developers usually use to handle this kind of situation?