-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
65 lines (65 loc) · 1.29 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[user]
email = [email protected]
name = Alexandre Bossard
signingkey = 33524736364774D3
[commit]
gpgsign = true
[color]
branch = auto
grep = auto
interactive = auto
pager = true
status = auto
showbranch = auto
ui = auto
[alias]
st = status
co = checkout
cm = commit
sw = switch
fixup = commit --fixup
rb = rebase
rbc = rebase --continue
dif = diff
l = log
sdif = diff --staged
sdiff = diff --staged
lp = log -p
ls = log --oneline
lss = log --oneline --stat
lsr = log --oneline --reverse
lg = log --graph --abbrev-commit --decorate --all
wip = commit -m '[skip ci] wip' --allow-empty
[push]
default = simple
[core]
editor = vim
excludesfile = ~/.gitignore
autocrlf = input
pager = delta
[pull]
rebase = true
[rerere]
enabled = true
[grep]
lineNumber = 1
[rebase]
autosquash = 1
updateRefs = true
[delta]
syntax-theme = Monokai Extended
line-numbers = true
features = decorations
minus-style = syntax auto
whitespace-error-style = magenta reverse
[interactive]
diffFilter = delta --color-only
[delta "decorations"]
commit-decoration-style = bold yellow ul
file-style = bold blue
file-decoration-style = box red ul
hunk-header-decoration-style = normal ul
[safe]
directory = /opt/flutter
[init]
defaultBranch = master