Created
July 10, 2009 09:10
-
-
Save arunthampi/144367 to your computer and use it in GitHub Desktop.
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
# To look at commits which haven't been pushed to remote | |
# I use an alias for lesser typing | |
$> alias grd='gitx origin/master..' | |
$> grd | |
# Another command I found helpful is git diff | gitx | |
# For which I use another alias gdm (this historically used to be an alias | |
# for git diff | mate) hence the m | |
$> alias gdm='git diff | gitx' | |
$> gdm | |
# To check for commits since 1st June 2009 | |
$> gitx --since="2009-06-01" | |
# To get only the last 10 commits | |
$> gitx -10 | |
# To get all commits without the merges | |
$> gitx --no-merges |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment