This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Useful Git Commands | |
| ✅ View commit messages pushed to remote repo | |
| git log --pretty=format:"%s" | |
| ------------------------------------------------------------------------------------------------------------------------ | |
| ✅ View the last commit on the current branch (including local commits) | |
| git log -1 | |
| ------------------------------------------------------------------------------------------------------------------------ |