Created
June 18, 2015 18:13
-
-
Save alkemann/29c8634a5b40c4f826fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[color] | |
ui = auto | |
diff = auto | |
status = always | |
branch = always | |
interactive = always | |
[color "branch"] | |
current = 220 | |
local = 222 | |
remote = 106 | |
plain = magenta | |
[color "diff"] | |
plain = 240 | |
meta = 248 | |
frag = 69 | |
old = 203 | |
new = 149 | |
commit = 220 | |
whitespace = normal red | |
[color "status"] | |
header = 15 | |
added = 154 | |
updated = 190 | |
changed = 208 | |
untracked = 67 | |
nobranch = 228 | |
[color "decorate"] | |
current = 220 | |
local = 222 | |
remoteBranch = 106 | |
tag = 107 | |
stash = 149 | |
HEAD = 69 | |
plain = magenta | |
[color "grep"] | |
context = 249 | |
filename = 137 | |
function = 69 | |
linenumber = 228 | |
match = 220 | |
selected = 230 | |
separator = 65 | |
[status] | |
relativePaths = false | |
[core] | |
excludesfile = ~/.gitignore | |
pager = less -FRSX | |
editor = "vim" | |
[alias] | |
cp = cherry-pick | |
war = diff --name-only --diff-filter=U | |
co = checkout | |
st = status -s -b | |
d = diff | |
dc = diff --cached | |
f = fetch -f -v | |
unstage = reset HEAD | |
uncommit = reset --soft HEAD^ | |
amend = commit --amend | |
b = branch -v -a | |
gl = log --oneline --decorate --stat --graph | |
lg = log --decorate --stat --graph --pretty=format:'%C(69)%h%Creset (%ar - %C(220)%an%C(15)), %s%n' | |
lc = log ORIG_HEAD.. --stat --no-merges | |
pl = log --abbrev-commit --pretty=oneline | |
ll = log --pretty=format:'%C(220)%h\t%C(208)%ar\t%C(107)%d %C(252)%s %C(69)%cn' | |
la = log --pretty=format:'%C(208)%cr\t%C(220)%h\t%C(69)%aN%Creset%C(107)%d %C(252)%s' | |
rp = log --patch --reverse --pretty=format:'%C(220)%h%Creset (%ar - %C(220)%an%Creset), %s%n' --decorate --stat | |
subway = log --graph --color --pretty=format:"%C(220)%h%x09%C(107)%d%C(252)%x20%s" | |
metro = log --graph --all --color --pretty=format:"%C(220)%h%x09%C(107)%d%C(252)%x20%s" | |
m = log --graph --all --color --pretty=format:"%C(220)%h%x09%C(107)%d%C(252)%x20%s" | |
sincenext = log --patch -w --reverse origin/next.. | |
prune-all = !git remote | xargs -n 1 git remote prune | |
whatis = show -s --pretty='tformat:%h (%s, %ad)' --date=short | |
whois = "!sh -c 'git log -i -1 --pretty=\"format:%an <%ae>\n\" --author=\"$1\"' -" | |
spush = svn dcommit | |
spull = svn rebase | |
serve = daemon --verbose --export-all --base-path=.git --reuseaddr --strict-paths .git/ | |
meff = merge --no-ff | |
gr = grep -pn --heading -C2 | |
cm = commit -m | |
[gui] | |
fontui = -family gothic -size 11 -weight normal -slant roman -underline 0 -overstrike 0 | |
fontdiff = -family Courier -size 11 -weight normal -slant roman -underline 0 -overstrike 0 | |
[mergetool] | |
keepBackup = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment