-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
40 lines (40 loc) · 948 Bytes
/
gitconfig
File metadata and controls
40 lines (40 loc) · 948 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
[user]
name = Rui Onodera
email = deraru@gmail.com
[alias]
a = add
b = branch -a
sw = switch
swm = switch main
swd = switch develop
cm = commit -m
dif = diff --color-words=[^\\x80-\\xbf][\\x80-\\xbf]*
l = log --graph --decorate --date=iso --pretty='%ad%C(auto) %h%d %Cgreen%an%Creset %s'
pp = pull --prune
rh = reset HEAD
st = status --untracked-files=all --short --branch
[diff]
tool = vimdiff
[merge]
tool = vimdiff
[commit]
template = .git_commit_template
[core]
editor = vim
pager = lv -c
quotepath = false
attributesfile = ~/.gitattributes_global
excludesfile = ~/.gitignore_global
[color]
ui = auto
[push]
default = simple
[pull]
rebase = false
[credential "https://git.heroku.com"]
provider = generic
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process