I have a master branch with 3 files:
feature1.txt
feature2.txt
feature3.txt
Now I create new branch call feature3 based on the master branch.
I will only work on file feature3.txt on this branch. I don't need the other 2 files. I want to remove them, but if I do, they will be removed from the master branch as well once I do a merge of the feature3 branch into the master branch.
What do I need to do to have these 2 files removed/hidden from branch feature3, without that the master branch is impacted?