I was trying to do this which didn't show anything different How to get the changes on a branch in git
I did a branch from master and since then changes have been made on master and my branch (called performance). All I want is
- The list of files changed/touched since branching "performance" branch (all files were committed)
- Show the complete difference of all those files changed/touched.
When doing git diff origin/master, it lists all changes on both branches :(.
What is the command since git diff HEAD..performance shows nothing(and ... also shows nothing)? Also, using log in the same way with .. and with ... also shows nothing.
If I do git log, I do see the commit I made on the performance branch with my comment about performance as well.
thanks, Dean