]> Tony Duckles's Git Repositories (git.nynim.org) - dotfiles.git/blob - .gitconfig
Add .gitignore; add .gitignore_global support
[dotfiles.git] / .gitconfig
1 [user]
2 name = Tony Duckles
3 email = tony@nynim.org
4
5 [alias]
6 sh = !git-sh
7 grab = !githug-grab
8 thanks = !git-thanks
9 cv = !git-cv
10 track = !git-track
11 ll = log --pretty=oneline --abbrev-commit --max-count=15
12 review = log -p --max-count=1
13 fp = format-patch --stdout
14 ci = commit
15 st = status
16 br = branch
17 co = checkout
18 df = diff
19 lg = log -p
20 who = shortlog -s --
21 brdate = !git-brdate
22 subtree = !git-subtree
23
24 [core]
25 filemode = true
26 whitespace = space-before-tab, trailing-space
27 excludesfile = ~/.gitignore_global
28
29 [diff]
30 renames = copies
31
32 [sendemail]
33 smtpserver = smtp.gmail.com
34 smtpserverport = 587
35 smtpencryption = tls
36 smtpuser = tony@nynim.org
37
38 [color]
39 ui = auto
40
41 [color "diff"]
42 meta = blue bold
43 frag = magenta bold
44 old = red bold
45 new = green bold
46
47 [color "branch"]
48 current = yellow reverse
49 local = yellow bold
50 remote = green bold
51 plain = red bold
52
53 [color "status"]
54 added = yellow
55 changed = green bold
56 untracked = blue bold
57