Fixed importlist.cgi
[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
15 [color]
16   status=auto
17   diff=auto
18   branch=auto
19
20 [diff]
21   tool = meld
22
23 [difftool]
24   prompt = false
25
26 [difftool "meld"]
27   cmd = meld "$LOCAL" "$REMOTE"
28
29 # Currently these are restating the default
30 [color "branch"]
31   current=green
32   local=white
33   remote=red
34
35 [color "diff"]
36   external = /bin/meld
37
38 [color "status"]
39   added=yellow
40   changed=green
41   untracked=cyan
42
43 [alias]
44   co=checkout
45   ci=commit
46   st=status
47   br=branch
48   hist=log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
49   type=cat-file -t
50   dump=cat-file -p
51   dlog=log --decorate
52   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' -
53
54 [push]
55   default = simple
56 [http]
57         sslVerify = false