removed files
[~madcoder/dotfiles.git] / gitconfig
1 [madcoder]
2     up-gitk=true
3
4 [alias]
5     co=checkout -m
6     ci=commit
7     st=!git -p status
8     pop=reset HEAD~1
9     unstash=stash apply
10     amend=commit --amend
11     squash=commit --amend -C HEAD
12     unstage=reset HEAD --
13     track=add -N
14     untrack=rm --cached
15
16 [core]
17     #editor=gvim -f
18     editor=vim
19     excludesfile=~madcoder/.git-excludes
20     preloadindex=true
21
22 [notes]
23     displayRef = refs/notes/*
24
25 [push]
26     default = upstream
27
28 [user]
29     name = Pierre Habouzit
30     email = phabouzit@apple.com
31
32 [color]
33     ui     = auto
34     diff   = auto
35     branch = auto
36     status = auto
37     pager  = true
38     interactive = auto
39     grep   = auto
40
41 [color "diff"]
42     meta = green
43     frag = yellow
44     old = magenta
45     new = bold cyan
46
47 [color "status"]
48     header = bold blue
49     added  = green
50     changed = bold red
51     untracked = bold yellow
52 [merge]
53     verbosity = 1
54     conflictstyle = diff3
55     tool = opendiff
56 [clean]
57     requireForce = false
58 [pack]
59     threads = 0
60 [advice]
61     pushNonFastForward = false
62     statusHints = false
63 [status]
64     submodulesummary = 1
65
66 [merge "dpkg-mergechangelogs"]
67     name = debian/changelog merge driver
68     driver = dpkg-mergechangelogs -m %O %A %B %A
69 [sendemail]
70     aliasesfile = /home/madcoder/.mutt/aliases
71     aliasfiletype = mutt
72
73 [url "gitolite@git.corp:"]
74     insteadOf = ssh://git.corp/srv/git/
75     insteadOf = git.corp:/srv/git/
76 [reviewboard]
77     url = http://reviews.corp/
78 [url "git://anonscm.debian.org"]
79     insteadOf = git://git.debian.org
80     insteadOf = git.debian.org:
81 [url "ssh://git.debian.org"]
82     pushInsteadOf = git://git.debian.org
83     pushInsteadOf = git.debian.org:
84 [branch "*"]
85     mergeoptions = -Xpatience
86 [credential]
87         helper = osxkeychain