Last active
August 29, 2015 14:18
-
-
Save MilanGrubnic70/29bcefef87cc7c0d1715 to your computer and use it in GitHub Desktop.
Git Log Pretty
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
git log --pretty=oneline | |
git log --pretty=oneline --max-count=2 | |
git log --pretty=oneline --since='5 minutes ago' | |
git log --pretty=oneline --until='5 minutes ago' | |
git log --pretty=oneline --author=<your name> | |
git log --pretty=oneline --all | |
git log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment