How can I find the oldest commit in git?
I can find a lot of similar questions here, but most of them are actually asking to find the first commit. However, the first commit is not necessarily the oldest for a lot of reasons, you can have a commit cherry-picked from another repo, commit applied from a patch file, or maybe you have rebased in the past and reordered commits. In either case, the commits may not be in chronological order.
I would like to find the oldest commit as in having the oldest author-date or commit-date. How can I do that?