-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
54 lines (52 loc) · 1.14 KB
/
gitconfig
File metadata and controls
54 lines (52 loc) · 1.14 KB
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
48
49
50
51
52
53
54
[include]
path = ~/.gitconfig.local
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow
frag = magenta
old = red
new = green
[color "status"]
added = yellow
changed = green
untracked = cyan
[color "diff"]
whitespace = red reverse
[core]
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore
autocrlf = false
compression = 0
packedGitLimit = 512m
packedGitWindowSize = 512m
[alias]
st = status
ci = commit
br = branch
co = checkout
df = diff
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
w = whatchanged
# add all changed (but not new) files to stage (index):
au = add -u
hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
ri = rebase --interactive
ad = commit --amend
aa = add .
[credential]
helper = osxkeychain
[push]
default = simple
[filter "lfs"]
clean = git lfs clean %f
smudge = git lfs smudge %f
required = true
[pack]
deltaCacheSize = 2047m
packSizeLimit = 2047m
windowMemory = 2047m