Hello
I am using git on Ubuntu 10.4.
I have made some commits to my master.
However, I want to get the difference between these commits. All of them are on my master branch.
For example:
commit dj374
made changes
commit y4746
made changes
commit k73ud
made changes
So I want to get the difference between k73ud and dj374. However when I did the following I couldn't see the changes I made in k73ud.
git diff k73ud..dj374 > master.patch
Many thanks for any advice,