You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
995 B
Plaintext

[include]
path = ~/.gitconfig.user
[core]
excludesfile = ~/.gitignore
editor = vim
autocrlf = input
eol = lf
pager = less -FXRS -x2
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
whitespace = red reverse
[color "status"]
added = yellow
changed = green
untracked = cyan
[alias]
st = status
cm = commit
co = checkout
br = branch -a
ps = push
pl = pull
12 years ago
mg = merge
d = difftool
unst = reset HEAD
hub = push origin master
fac = push origin refac
subup = submodule foreach git pull
12 years ago
rs = reset HEAD --hard
hist = log --pretty=format:\"%h | %ad | %an | %s%d \" --graph --date=local
lo = log --graph --decorate --pretty=oneline --abbrev-commit --all
type = cat-file -t
dump = cat-file -p
12 years ago
[diff]
tool = vimdiff
[difftool]
12 years ago
prompt = false
cmd = /usr/local/bin/vimdiff "$LOCAL" "$MERGED" "$REMOTE"