-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
47 lines (39 loc) · 803 Bytes
/
.gitconfig
File metadata and controls
47 lines (39 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[user]
name = Patrick LaFontaine
email = 32135464+Pat-Lafon@users.noreply.github.com
[github]
user = Pat-Lafon
[core]
editor = emacs -nw
[alias]
cleanup = !sh "$(dirname "$(readlink ~/.gitconfig)")/git_aliases/cleanup.sh"
up = !sh "$(dirname "$(readlink ~/.gitconfig)")/git_aliases/up.sh"
[color]
ui = true
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = red
[merge]
conflictStyle = zdiff3
[rerere]
enabled = true
[diff]
algorithm = histogram
[rebase]
autostash = true
[init]
defaultBranch = master
[pull]
rebase = true
[push]
autoSetupRemote = true