Added gitconfig
[clearscm.git] / rc / gitconfig
1 [user]
2         name = Andrew DeFaria
3         email = adefaria@audience.local
4 [pack]
5         windowMemory=128m
6         threads=1
7         deltaCacheSize=128m
8 [core]
9         pager = less -RX
10         packedGitLimit=128m
11         packedGitWindowSize=128m
12 [color]
13         status=auto
14         diff=auto
15         branch=auto
16
17 # Currently these are restating the default
18 [color "branch"]
19         current=green
20         local=white
21         remote=red
22 [color "diff"]
23         meta=white bold
24         #frag=magenta bold
25         old=red
26         new=yellow
27 [color "status"]
28         added=yellow
29         changed=green
30         untracked=cyan
31
32 [alias]
33         co=checkout
34         ci=commit
35         st=status
36         br=branch
37         hist=log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
38         type=cat-file -t
39         dump=cat-file -p
40         dlog=log --decorate
41 [push]
42         default = matching