How can I get the diff between two commits of the same file using magit
?
Directly form git
one can do this. But I don\'t k
Building up from @cdidyk answer, it is also (now) possible to select the range of the diff with text selection to go quicker than typing the hashes of the commits.
So a quicker (and more visual) sequence could be :
C-SPC
(or V
if you use evil-mode)=f
to specify the file (path relative to the project root folder)d
to open the diff popupd
to open the dwim buffer or r
for diff range (They do mostly the same thing in this case, I think)