[alias]
aliases = !git config --get-regexp 'alias.*' | colrm 1 6 | sed 's/[ ]/ = /'
+ current-branch = rev-parse --abbrev-ref HEAD
+ parent-branch = !"git show-branch -a | ack '\\*' | ack -v \"`git current-branch`\" | head -n1 | sed 's/.*\\[\\(.*\\)\\].*/\\1/' | sed 's/[\\^~].*//'"
+
pulled-changes = !git log -p -2
not-yet-pulled = !git log --name-status origin/master
lastco = log -1 HEAD --numstat
# how to pass params to git aliases
my-alias1 = "!f(){ echo \"$@\"; }; f" # define a func, then call the func.
my-alias2 = "! date " # call the cmd directly
-
+ log-remote = "!git log HEAD..origin"
[color]
ui = always