I have a git repository with two branch, dev and featureA
When I finished featureA so I merge it into dev, but featureA branch has some new files that dev does not have, like newFileA.cs and newFileB.cs, the problem is that the new files does not automatically added to the project in dev branch.
so, which steps I missed here?
I find the SO answer here may be useful, but I don't want manually add each files every time there is a new file from another branch.