-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
50 lines (41 loc) · 1.02 KB
/
gitconfig
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
[user]
email = [email protected]
name = Unknown User
[color]
diff = auto
status = auto
branch = auto
interactive = auto
ui = auto
[alias]
bage = for-each-ref --sort='-committerdate:iso8601' --format=' %(committerdate:iso8601)%09%(refname)' refs/heads
can = commit --amend --no-edit
count = rev-list --count --first-parent HEAD
diff1 = diff HEAD~1
ds = diff --stat
glog = log --graph --oneline --decorate --all
l = log --stat --decorate
log = log --stat
logall = log --graph --all --decorate
push = push --verbose
sta = status
[merge]
tool = diffconflicts
stat = true
[push]
default = tracking
[pull]
rebase = true
[rebase]
autostash = true
[mergetool "diffconflicts"]
cmd = diffconflicts vim $BASE $LOCAL $REMOTE $MERGED
trustExitCode = true
keepBackup = false
[commit]
verbose = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true