-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
41 lines (41 loc) · 867 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
[user]
name = Jeremy Cade
email = jeremy@subete.com.au
[color]
ui = auto
[core]
excludesfile = ~/.gitignore_global
editor = vim
ignorecase = false
[credential]
helper = manager
[filter "media"]
clean = git-media-clean %f
smudge = git-media-smudge %f
[filter "lfs"]
clean = git lfs clean %f
smudge = git lfs smudge %f
required = true
[alias]
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold cyan)<%an>%Creset' --abbrev-commit
flg = diff-tree --no-commit-id --name-only -r
[init]
defaultBranch = main
[branch]
autosetuprebase = always
[fetch]
prune = true
[pull]
rebase = true
[push]
default = simple
followTags = true
autoSetupRemote = true
[diff]
tool = vscode
[difftool "vscode"]
cmd = code --wait --diff $LOCAL $REMOTE
[merge]
tool = vscode
[mergetool "vscode"]
cmd = code --wait $MERGED