Differences for a certain folder between Git branches
diff, git, git-diff, version-control
Solution
You can use
git diff master..yourbranch -- path/to/folder
Problem
How can I get a diff file for a certain folder between the master branch and a branch I have created?