Skip to content

Instantly share code, notes, and snippets.

View guenhter's full-sized avatar

Günther Grill guenhter

  • Austria
View GitHub Profile
git for-each-ref --sort=committerdate refs/heads/ --format='%(HEAD) %(color:yellow)%(refname:short)%(color:reset) - %(color:red)%(objectname:short)%(color:reset) - %(contents:subject) - %(authorname) (%(color:green)%(committerdate:relative)%(color:reset))'
for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ci %cr" $branch | head -n 1` \\t$branch; done | sort -r
git config user.email "grill.guenther@gmail.com"
git config user.name "guenhter"
git config user.email "guenther.grill@frauscher.com"
git config user.name "guenthgr"
git config --global push.default simple