-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
41 lines (37 loc) · 1.12 KB
/
gitconfig
File metadata and controls
41 lines (37 loc) · 1.12 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
[user]
name = Victor Asteinza
email = vic+github@civrot.org
[color]
ui = true
[core]
editor = /usr/local/bin/nvim
excludesfile = ~/.gitignore_global
[help]
autocorrect = 1
[push]
default = current
[alias]
co = "checkout"
cf = "!source ~/.githelpers && fzf_branch"
dbm = "!source ~/.githelpers && delete_local_merged_branches master"
dbd = "!source ~/.githelpers && delete_local_merged_branches develop"
dbs = "!source ~/.githelpers && delete_local_merged_branches staging"
bamr = "!source ~/.githelpers && delete_remote_merged_branches"
ctags = !.git/hooks/ctags
rn = "log --no-merges --no-decorate --topo-order --reverse --format='* %s' origin/master..origin/develop"
l1 = "log --oneline --decorate --all --graph"
[pull]
ff = only
[filter "lfs"]
smudge = git-lfs smudge -- %f
required = true
clean = git-lfs clean -- %f
process = git-lfs filter-process
[init]
templatedir = ~/.git_template
defaultBranch = main
[include]
# For username / creds / etc
path = ~/.gitconfig.local
[commit]
gpgsign = true