-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
43 lines (42 loc) · 987 Bytes
/
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
[user]
email = [email protected]
name = Jorge Modesto
; signingkey = A4BDCC6CC375E0D0
[color]
ui = true
[push]
default = current
[alias]
a = add
b = branch
cm = commit
s = status
d = diff
ds = diff --staged
sh = push
ll = pull
llo = pull origin
llm = pull origin master
llc = !sh -c 'git pull origin $(git rev-parse --abbrev-ref HEAD)'
ash = stash
co = checkout
fco = !sh -c 'git fetch origin $1:$1 && git checkout $1' -
tpf = !sh -c 'git tag -f $1 && git push -f origin $1' -
[core]
excludesfile = ~/.gitignore_global
editor = nvim
; [commit]
; gpgsign = true
; [gpg]
; program = gpg
; [url "ssh://[email protected]/"]
; insteadOf = https://github.com/
[pull]
rebase = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[includeIf "gitdir:~/work/"]
path = ~/work/.gitconfig