-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgitconfig-github
More file actions
61 lines (44 loc) · 1.08 KB
/
gitconfig-github
File metadata and controls
61 lines (44 loc) · 1.08 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[core]
editor = nvim
excludesfile = ~/.gitignore_local
fsmonitor = true
pager = delta
untrackedCache = true
[include]
path = ~/.config/delta/delta-themes.gitconfig
[pull]
rebase = false
[codespaces-theme]
hide-status = 1
[interactive]
diffFilter = delta --color-only
[delta]
features = side-by-side line-numbers decorations Catppuccin-mocha
navigate = true
[gpg]
program = /.codespaces/bin/gh-gpgsign
[init]
defaultBranch = main
[credential]
helper = /.codespaces/bin/gitcredential_github.sh
[user]
name = David Jensenius
email = david@jensenius.com
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[push]
default = current
[github]
user = djensenius
[url "https://github.com/"]
insteadOf = git@github.com:
[credential]
helper = cache
[alias]
m = !git rev-parse --abbrev-ref origin/HEAD | cut -c8- | xargs -n 1 git checkout
mp = !git rev-parse --abbrev-ref origin/HEAD | cut -c8- | xargs -n 1 git checkout && git pull origin $(git rev-parse --abbrev-ref HEAD)
[help]
autocorrect = 20