-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
51 lines (51 loc) · 1.05 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
[user]
name = aiya000
email = [email protected]
[merge]
tool = vimdiff
[github]
user = aiya000
[include]
path = ~/.gitconfig_env
[push]
default = simple
[alias]
clone = clone --recursive
make = create
pr = pull-request
ta = log --all --graph --oneline --decorate
tree = log --graph --decorate --oneline
tree-all = log --graph --decorate --all --oneline
[core]
pager = cat
quotepath = false
excludesfile = ~/.gitignore_global
[init]
templatedir = ~/.git_templates
defaultBranch = main
[status]
short = true
branch = true
[mergetool]
keepBackup = false
[color]
ui = auto
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[commit]
template = ~/.dotfiles/.gitmessage
[rerere]
enabled = true
[diff]
indentHeuristic = true
[rebase]
autostash = true
[credential "https://github.com"]
helper =
helper = !/home/linuxbrew/.linuxbrew/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !/home/linuxbrew/.linuxbrew/bin/gh auth git-credential