'How to show full git log in terminal?

I need to list the full log from the most recent recent commit to the first commit. So far I tried all the below and nothing works. I only get a less view showing the most recent 2-3 commits.

git log --full-history

and

git log --full-diff

and

git log -n 999999

and

git log --before yesterday

and

git log --full-diff --sparse

and

git log --reflog

and

git log --grep *.*
git


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source