Skip to content

Instantly share code, notes, and snippets.

@irae
Last active August 3, 2016 23:15
Show Gist options
  • Save irae/3290018 to your computer and use it in GitHub Desktop.
Save irae/3290018 to your computer and use it in GitHub Desktop.
Iraê .gitconfig file
[alias]
st = status -sb
ci = commit -v
co = checkout
br = branch
d = diff --color-words
dt = difftool
l = log --oneline --decorate
lg = log --graph --oneline --decorate=full
ll = log --no-merges --pretty=format:%C(yellow)%h%Creset\\ %Cgreen%an%Creset\\ %Cred%d%Creset\\ %s
unadd = reset HEAD
get = !git co master && git fancy-pull && git submodule update && git delete-merged-branches
fancy-pull = !WAS_HEAD=`git rev-parse HEAD` && git fetch --all --prune && git rebase origin/master && git --no-pager diff --stat $WAS_HEAD && git --no-pager ll $WAS_HEAD..HEAD && echo && git st
put = !git get && git push && git st
statis = !sh -c \"echo \\\"Cacildis!\\\"\"
vommit = !sh -c \"cat ~/.gitvommit\"
branch-diff = !git diff `git merge-base --octopus master HEAD`
bd = !git diff --color-words `git merge-base --octopus master HEAD`
bdt = !git difftool `git merge-base --octopus master HEAD`
aliases = !git config --get-regexp 'alias.*' | colrm 1 6 | sed 's/[ ]/ = /'
last24 = log --author=irae --since=yesterday --pretty=oneline --abbrev-commit
codereview = !git log -p --color-words --no-merges --pretty="format:==========================%n%Cgreen%an%Creset\\ %C\\(yellow\\)`cat .gitcommitlink`%h%Creset\\ %Cred%d%Creset%n%C\\(cyan\\)%s%Creset%n%b=========================="\n2> /dev/null
codeoverview = !git log --stat --no-merges --pretty="format:==========================%n%Cgreen%an%Creset\\ %C\\(yellow\\)`cat .gitcommitlink`%h%Creset\\ %Cred%d%Creset%n%C\\(cyan\\)%s%Creset%n%b=========================="\n2> /dev/null
cr = !git codereview
[core]
editor =
excludesfile = ~/.gitignore
autocrlf = false
[user]
name =
email =
[github]
user =
token =
[push]
default = current
[pull]
default = matching
[color]
branch = auto
diff = auto
interactive = auto
status = auto
ui = auto
[difftool "Kaleidoscope"]
cmd = ksdiff --partial-changeset --relative-path \"$MERGED\" -- \"$LOCAL\" \"$REMOTE\"
[diff]
tool = Kaleidoscope
[difftool]
prompt = false
[mergetool "Kaleidoscope"]
cmd = ksdiff --merge --output \"$MERGED\" --base \"$BASE\" -- \"$LOCAL\" --snapshot \"$REMOTE\" --snapshot
[merge]
tool = Kaleidoscope
[mergetool]
prompt = false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment