-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
48 lines (48 loc) · 1.01 KB
/
gitconfig
File metadata and controls
48 lines (48 loc) · 1.01 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
[user]
name = Mikhail Chepkin
email = mihchepi@gmail.com
[core]
editor = nvim
[color]
ui = auto
diff = true
grep = true
status = true
[init]
defaultBranch = main
[column]
ui = auto
[branch]
sort = -committerdate
[tag]
sort = version:refname
[diff]
tool = nvimdiff
noprefix = true
algorithm = histogram
colorMoved = plain
mnemonicPrefix = true
renames = true
[push]
autoSetupRemote = true
followTags = true
[fetch]
all = true
[merge]
conflictstyle = zdiff3
[pull]
rebase = true
[advice]
pushNonFastForward = false
statusHints = false
[rebase]
autostash = true
[alias]
co = checkout
ci = commit
cp = cherry-pick
st = status
br = branch
hist = log --pretty=format:\"%Cred%h %Creset%ad %Cred| [%an] | %Cgreen%s%d\" --date=short --color --graph
lg = log --graph --pretty=format:\"%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset\" --abbrev-commit --date=relative
sub = submodule update --init