My colleague pointed out lately, that SVN refers to its commits with unique numbers. If I want to refer to a commit in Git, I know that I just have to copy a few of the SHA's digits, but even if a project has some thousands of commits, an increasing number would be easier to remember or even type.
Is it possible to let git list its commits like this:
0001 a258cb5 Latest commit
0002 373a4e2 previous one
0003 00f7c33 ...
0004 0bbc4da ...
0005 5b7eb09 ...
That way, you could refer to a commit with something like HEAD~3
instead of 00f7c33
. Of course the number would change for every commit that is done, but I rarely refer to older commits, so the numbers would never be very large and easy to remember.
Tanks in advance