Created
October 28, 2013 10:21
-
-
Save nielk/7194486 to your computer and use it in GitHub Desktop.
git log in one line
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 | |
# other options: | |
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 --all --pretty=format:'%h %cd %s (%an)' --since='7 days ago' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment