When I do git diff COMMIT I see the changes between that commit and HEAD (as far as I know), but I would like to see the changes that were made by that single commit.
I haven't found any obvious …
I want a diff of all changes in a branch that is not merged to master yet.
I tried:
git diff master
git diff branch..master
git diff branch...master
However, in each of these cases the diff contains content …
We have a lot of spreadsheets (xls) in our source code repository. These are usually edited with gnumeric or openoffice.org, and are mostly used to populate databases for unit testing with dbUnit. There are no easy ways of doing …