-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitconfig
54 lines (54 loc) · 1.58 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
52
53
54
[core]
pager = less
editor = nvim
excludesfile = ~/.gitignore
quotepath = false
[color]
status = auto
diff = auto
[alias]
s = status -bs
d = diff
ci = commit -v
fixup = commit --amend -C HEAD
co = checkout
ad = add
l = log --decorate
lp = log --decorate --stat --patch --ignore-all-space
ls = ls-files
br = branch --verbose --verbose --color --sort='-authordate'
f = fetch
g = grep --line-number --show-function --color --heading --break
sha = log --pretty="%H"
fu = fetch upstream
rum = rebase upstream/master
rom = "!sh -c \"git rebase $(git symbolic-ref refs/remotes/origin/HEAD)\""
rod = rebase origin/develop
tb = git-tb
bk = git-bk
lom = "!sh -c 'git log --decorate --stat --patch --reverse $(git merge-base --fork-point origin/master)..HEAD'"
log-pretty-cheatsheet = git-log-pretty-cheatsheet
[user]
name = Daisuke Fujimura
email = [email protected]
[github]
user = fujimura
[push]
default = simple
[diff "exif"]
textconv = exiftool
[merge]
tool = vimdiff
[diff]
algorithm = patience
[url "[email protected]:"]
insteadOf = https://github.com/
[pull]
ff = only
[init]
defaultBranch = main
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true