-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
62 lines (61 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
[user]
name = Saúl Ibarra Corretgé
email = s@saghul.net
[color]
ui = auto
[github]
user = saghul
[core]
editor = vim
excludesfile = /home/saghul/.gitignore
pager = delta
[alias]
l = log --color --graph --pretty=format:'%Cred%h%Creset - %s %Cgreen(%cr) %C(bold blue)' --abbrev-commit --
st = status -sb
last = rev-parse --short HEAD
distclean = clean -d -f -x
b = branch
c = commit
ca = commit --amend --no-edit
cb = !sh -c 'git checkout $(git branch | fzf --height 10)'
co = checkout
fixup = commit -a -m "fixup!"
authors = shortlog -sn
pushf = push --force-with-lease
pushff = push --force
[branch]
autosetuprebase = always
sort = -committerdate
[push]
default = current
autoSetupRemote = true
[help]
autocorrect = 1
[pull]
rebase = true
[rebase]
autoStash = true
updateRefs = true
[merge]
conflictstyle = diff3
renameLimit = 9999
[diff]
colorMoved = default
renameLimit = 9999
[http]
cookiefile = /Users/saghul/.gitcookies
[init]
defaultBranch = master
[rerere]
enabled = true
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
line-numbers = true
side-by-side = true
syntax-theme = Dracula
[advice]
skippedCherryPicks = false
[column]
ui = auto