Attempting to carve out a sensible chunk of stuff for a dotfiles repo.

Sure hope I didn't miss any super secret crap :-P
This commit is contained in:
Dan Buch
2012-02-26 14:38:01 -05:00
commit a8cd5a2fe9
51 changed files with 7951 additions and 0 deletions

77
gitconfig Normal file
View File

@@ -0,0 +1,77 @@
[user]
name = Dan Buch
email = daniel.buch@gmail.com
[core]
excludesfile = ~/.git-global-ignores
autocrlf = false
[daemon]
uploadpack = true
uploadarch = true
receivepack = true
[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
[color "status"]
added = yellow
changed = green
untracked = cyan
[alias]
a = add
ad = add
addd = add
br = branch
bra = branch -a
brr = branch -r
ci = commit
co = checkout
d = diff
dc = diff --cached
di = diff
dif = diff
l = ls-files
ls = ls-files
nuke = clean -dfx
pr = pull --rebase
s = status
st = status
sta = stash
stcq = diff --cached --name-only
stq = diff --name-only
t = tag
ta = tag
tags = tag
slog = log git-svn..
sup = svn fetch --all
spush = svn dcommit
srb = rebase git-svn
cm = checkout master
lm = log master..
rt = rebase trunk
lt = log trunk..
ct = checkout svn/trunk
logv = log --name-status
[clean]
requireForce = false
# vim:filetype=cfg