-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
39 lines (39 loc) · 733 Bytes
/
Copy path.gitconfig
File metadata and controls
39 lines (39 loc) · 733 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
[alias]
lg = log --oneline
last = log -1 HEAD
co = checkout
cob = checkout -b
s = status
c = commit --verbose
cam = commit --amend --verbose
d = diff
dc = diff --cached
master = checkout master
[color]
ui = auto
[color "diff"]
meta = 11
frag = magenta bold
commit = yellow bold
old = red bold
new = green bold
whitespace = red reverse
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[core]
excludesfile = ~/.gitignore_global
commitGraph = true
[diff]
algorithm = patience
[fetch]
prune = true
[merge]
ff = only
[push]
default = upstream
[user]
name = Gord Pearson
email = gord.pearson@shopify.com