Alias to a Nice Default Gitk
This runs "gitk"...
...including all branches,
...outputting errors to the black hole,
...and any extra command-line arguments.
# Run like this # gitk --since="2 days ago" & alias gitk="gitk --all $1 2>/dev/null"
DZone Snippets > justinwr > git
11387 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Justin R http://blog.kineticweb.com/
# Run like this # gitk --since="2 days ago" & alias gitk="gitk --all $1 2>/dev/null"
alias gitdiff='git log|grep commit|cut -d " " -f2|head -n 2|xargs -n 2 git diff -R|mate'