Some changes for Jupiter
[clearscm.git] / rc / gitconfig
1 [user]
2   name = Andrew DeFaria
3   email = Andrew@DeFaria.com
4
5 [pack]
6   windowMemory=128m
7   threads=1
8   deltaCacheSize=128m
9
10 [core]
11   pager = less -RX
12   packedGitLimit=128m
13   packedGitWindowSize=128m
14         excludesfile = /home/andrew/.gitignore
15
16 [color]
17   status=auto
18   diff=auto
19   branch=auto
20
21 [diff]
22   tool = meld
23
24 [difftool]
25   prompt = false
26
27 [difftool "meld"]
28   cmd = meld "$LOCAL" "$REMOTE"
29
30 # Currently these are restating the default
31 [color "branch"]
32   current=green
33   local=white
34   remote=red
35
36 [color "diff"]
37   external = /bin/meld
38
39 [color "status"]
40   added=yellow
41   changed=green
42   untracked=cyan
43
44 [alias]
45   co=checkout
46   ci=commit
47   st=status
48   br=branch
49   hist=log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
50   type=cat-file -t
51   dump=cat-file -p
52   dlog=log --decorate
53   oldest-ancestor = !bash -c 'diff -u <(git rev-list --first-parent "${1:-master}") <(git rev-list --first-parent "${2:-HEAD}") | sed -ne \"s/^ //p\" | head -1' -
54
55 [push]
56   default = simple
57 [http]
58         sslVerify = false
59 [credential]
60         helper = store