Mastodon hachyterm.io

You can see the history of your git project in the terminal with git log.

Navigate into your folder, open the shell, type:

git log

You can format the code, for example like so:

git log --oneline

This prints the commit history in one line per commit and shortens the commit hash.

You can also see the oldest commits first:

git log --oneline --reverse

Further Reading