I am facing a similar example as in this tutorial: https://www.atlassian.com/git/tutorials/saving-changes/git-diff
Executing git diff:
git diff commit1 commit2
I get the following output:
diff --git a/diff_test.txt b/diff_test.txt
index 6b0c6cf..b37e70a 100644
--- a/diff_test.txt
+++ b/diff_test.txt
@@ -1 +1 @@
-this is a git diff test example
+this is a diff example
How do I know which commit is a and which is b?