You can check the commit history in your Git repository using the following command:
git log
This command will display a list of commits in reverse chronological order, showing details such as the commit hash, author, date, and commit message.
If you want a more concise view, you can use:
git log --oneline
This will show each commit on a single line, displaying the abbreviated commit hash and the commit message. You can also add additional options to customize the output further.
