-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
53 lines (52 loc) · 1.05 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
[user]
name = Gustavo Martins T Borges
email = [email protected]
[alias]
st = status
lg = log --graph --pretty=format:'%C(auto)%h -%C(auto)%d %s %C(green)(%cr) %C(blue)<%an>' --abbrev-commit --date=relative
lga = log --graph --pretty=format:'%C(auto)%h -%C(auto)%d %s %C(green)(%cr) %C(blue)<%an>' --abbrev-commit --date=relative --all
cm = commit
co = checkout
sw = switch
rt = restore
rs = reset
cl = clean
cn = clone
pl = pull
ps = push
br = branch
dd = diff
dw = diff --word-diff
ds = diff --staged
rb = rebase
rbc = rebase --continue
rba = rebase --abort
mr = merge
mrc = merge --continue
mra = merge --abort
[push]
default = simple
[color]
ui = true
[core]
editor = nvim
autocrlf = false
eof = lf
[branch]
autosetuprebase = always
[commit]
template = ~/.gitmessage
gpgsign = true
verbose = true
[pull]
rebase = true
[merge]
tool = vimdiff
ff = only
conflictstyle = diff3
[init]
defaultBranch = main
[fetch]
prune = true
[includeIf "gitdir:~/repos/saas/matt/"]
path = .gitconfig-matt