Advertisement
Guest User

Untitled

a guest
Jul 19th, 2017
469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [user]
  2.     name = Gary Helmling
  3.     email = gary_helmling@trendmicro.com
  4. [color]
  5.     diff = auto
  6.     status = auto
  7.     branch = auto
  8.     interactive = auto
  9. [alias]
  10.     ci = commit -a
  11.     co = checkout
  12.     st = status
  13.     up = pull
  14.     incoming = !br=`git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* //'` && git log origin/$br ^$br
  15.     outgoing = !br=`git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* //'` && git log $br ^origin/$br
  16.     changed = log -v ^master
  17.     lol = log --graph --decorate --pretty=oneline --abbrev-commit
  18.     lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
  19. [push]
  20.     default = current
  21. [core]
  22.     excludesfile = /home/ghelmling/.gitignore
  23. #[diff]
  24. #    external = /home/ghelmling/bin/git-meld.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement