-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_gitconfig.tmpl
More file actions
45 lines (44 loc) · 959 Bytes
/
dot_gitconfig.tmpl
File metadata and controls
45 lines (44 loc) · 959 Bytes
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
[user]
name = Shibata, Tats
{{- if eq .chezmoi.hostname "7cf34ded5d65" }}
email = {{ onepasswordRead "op://chezmoi/Tats Shibata/business email" }}
{{- else }}
email = 868951+rewse@users.noreply.github.com
{{- end }}
[core]
editor = vim
pager = bat
[color]
ui = auto
[diff]
algorithm = histogram
[init]
defaultBranch = main
[pull]
rebase = false
[alias]
br = branch
co = checkout
ci = commit
di = diff
me = merge
re = rebase
st = status
sw = switch
cp = cherry-pick
amend = commit --amend
check = diff --check
continue = rebase --continue
graph = log --oneline --graph --all
merged = branch --merged
nomerged = branch --no-merged
staged = diff --staged
unstage = reset HEAD
untrack = rm --cached
l = log --oneline
l10 = log --oneline -10
l20 = log --oneline -20
log = log
log10 = log -10
log20 = log -20
last = log -1 HEAD