-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
49 lines (49 loc) · 946 Bytes
/
.gitconfig
File metadata and controls
49 lines (49 loc) · 946 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
48
49
[user]
name = Matt Kline
email = matt@bitbashing.io
[core]
autocrlf = false
compression = 0
[color]
ui = auto
[alias]
graph = log --graph --oneline --decorate
ff = merge --ff-only
zip = archive --format=zip
dt = difftool
ga = log --oneline --decorate --graph --all
gr = log --oneline --decorate --graph
co = checkout
ci = commit
st = status
df = diff
cam = commit --amend
append = commit --amend --no-edit
kill-branch = !git push --delete origin "$@" && git branch -d
[diff]
tool = meld
algorithm = patience
submodule = short
[color "sh"]
branch = yellow bold
dirty = red bold
[push]
default = current
recurseSubmodules = check
[merge]
conflictStyle = diff3
[fetch]
prune = true
writeCommitGraph = true
[pull]
rebase = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[init]
defaultBranch = master
[gc]
autoDetach = false
auto = 0