-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_gitconfig
More file actions
62 lines (62 loc) · 1.13 KB
/
dot_gitconfig
File metadata and controls
62 lines (62 loc) · 1.13 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
62
[user]
name = Toshiki Takezawa
email = tsk.take815@gmail.com
[github]
user = to4iki
[color]
ui = auto
[column]
ui = auto
[core]
editor = hx
pager = delta
whitespace = trailing-space,space-before-tab
autocrlf = input
excludesfile = ~/.config/git/ignore
fsmonitor = true
untrackedCache = true
[alias]
undo = reset --soft HEAD~
cancel = !git commit -a -m 'Temporary commit for cancel' && git reset --hard HEAD~
[pull]
rebase = true
[rebase]
autoStash = true
autoSquash = true
updateRefs = true
[stash]
showPatch = true
[merge]
ff = false
conflictstyle = zdiff3
[init]
defaultBranch = main
[tag]
sort = version:refname
[help]
autocorrect = prompt
[commit]
verbose = true
[rerere]
enabled = true
autoupdate = true
[push]
autoSetupRemote = true
default = current
followTags = true
[fetch]
prune = true
pruneTags = true
[branch]
sort = -committerdate
[log]
date = iso
[status]
showUntrackedFiles = all
[ghq]
root = ~/src
[delta]
side-by-side = true
[wt]
nocd = create
hook = tmux neww -c \"$PWD\" -n \"$(basename -s .git `git remote get-url origin`):$(git branch --show-current)\"