With git I can see the differences in a file relative to any other past commit as:
git diff commit file_name
This shows me the differences in file_name
between the version in commit
against my current unstaged changes.
With Magit I can choose a given commit with .
in the log and compare it with another commit with =
. However I do not see my unstaged changes in the log so how can I select them to make the comparison?
Thank you in advance.