Skip to content

Instantly share code, notes, and snippets.

@arunthampi
Created July 10, 2009 09:10
Show Gist options
  • Save arunthampi/144367 to your computer and use it in GitHub Desktop.
Save arunthampi/144367 to your computer and use it in GitHub Desktop.
# 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