I am trying to understand the best way to manage my resource files between two branches while merging new features from dev into master.
This is what I did so far:
- Created a Dev branch from my Master branch.
- Changed the resource file strings in my Dev branch (changed end points / folder locations) to use for testing.
- Added some minor feature in my Dev branch.
- Tried to merge the feature from my Dev branch into my master branch<-- issue occurs because I don't want my resource file changes to be merged.
So how do I go about managing my resource files in my dev branch without overwriting resource files in my master branch on merge? I am using TFS and this is the first time I have been trying to utilize different deploy environments.