git log
December 13, 2022
Git Log Command

Git log is an essential command for working with Git. It allows you to see the history of a repository, including details about each commit like the author, date, and commit message.

Read More
git log oneline
May 17, 2022
Git Log Show in One Line (–oneline)

To check our commit history on a Repository within Git, we use the git log command. When using this command we scroll through the commit log within our Terminal by hitting the Enter key, and then we need to hit q on our keyboard to exit reading the git log.

Read More