I have a branch named feature_219
which was created from master
a little while ago. Since the diversion, there were a number of files changed on both the branches.
Now I am trying to figure out what files where changed while working on the feature_219
branch only.
After doing some research I found out that git diff --name-only master feature_219
might help but it turned out that this commands tells about all files that are different in both the branches. I tried to look for some option with this command but nothing worked for me.
Is there any way to list only those files that were changed in feature_219
branch?