Let's say that I have 2 commits, initial_commit which is my intial commit and added_file in which I added a file
git diff <initial_commit> <added_file>
git will show me that a file was added, however, I often confuse in which order I'm supposed to input the commits to git diff and often end up with
git diff <added_file> <initial_commit>
and then it will look like a file was actually removed. I'm fully aware that git is simply doing what I'm asking it to do but my question is, is there some way for me to tell git to "figure out" which of the commits is the older one and always do a diff where the older commit is compared to the newer commit? I have read through the manpage without finding anything, but I'll admit I don't have that much experience in reading those so I might've missed it