]> Tony Duckles's Git Repositories (git.nynim.org) - dotfiles.git/blob - .gitconfig
.bash_profile: Support "keychain"
[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
22 [core]
23 filemode = true
24 whitespace = space-before-tab, trailing-space
25
26 [diff]
27 renames = copies
28
29 [sendemail]
30 smtpserver = smtp.gmail.com
31 smtpserverport = 587
32 smtpencryption = tls
33 smtpuser = tony@nynim.org
34
35 [color]
36 ui = auto
37
38 [color "diff"]
39 meta = blue bold
40 frag = magenta bold
41 old = red bold
42 new = green bold
43
44 [color "branch"]
45 current = yellow reverse
46 local = yellow bold
47 remote = green bold
48 plain = red bold
49
50 [color "status"]
51 added = yellow
52 changed = green bold
53 untracked = blue bold
54