-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
53 lines (41 loc) · 1.01 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]
email = [email protected]
name = Johannes Naylor
[github]
user = jonaylor89
# [url "ssh://[email protected]/"]
# insteadOf = https://github.com/
[url "ssh://[email protected]/"]
insteadOf = https://gitlab.com/
[alias]
ci = commit
cim = commit -m
cl = clone --recursive
ps = push
pl = pull
psom = push origin main
psod = push origin dev
plom = pull --recurse-submodules origin main
plod = pull --recurse-submodules origin dev
pall = !git remote | xargs -L1 git push --all
ru = remote update
ra = remote add
rao = remote add origin
st = status
tree = log --graph --decorate --pretty=oneline --abbrev-commit
squash-all = "!f(){ git reset $(git commit-tree HEAD^{tree} -m \"${1:-A new start}\");};f"
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[diff "sopsdiffer"]
textconv = sops -d
[pull]
rebase = false
[init]
defaultBranch = main
[core]
excludesFile = ~/.gitignore
[commit]
gpgsign = true