forked from rmm5t/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
39 lines (39 loc) · 653 Bytes
/
gitconfig
File metadata and controls
39 lines (39 loc) · 653 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
[include]
path = ~/.gitconfig_local
[alias]
co = checkout
st = status
br = branch
w = whatchanged
amend = commit --amend
unstage = reset HEAD --
[apply]
whitespace = nowarn
[color]
diff = auto
status = auto
branch = auto
interactive = auto
ui = true
pager = true
[merge]
summary = true
[push]
default = upstream
[remote "origin"]
push = HEAD
[diff]
ignoresubmodules = untracked
[core]
excludesfile = ~/.gitignore
[heroku]
account = personal
[pull]
rebase = true
[fetch]
prune = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true