-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
55 lines (44 loc) · 959 Bytes
/
Copy path.gitconfig
File metadata and controls
55 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
46
47
48
49
50
51
52
53
54
55
[core]
excludesfile = ~/.gitignore
editor = nvim
pager = "nkf -w | less -r"
[marge]
tool = vimdiff
[user]
name = Shinichi Ueda
email = skyriser@levolution.info
signingkey = ~/.ssh/id_ed25519_signing.pub
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[push]
default = tracking
[merge]
ff = false
[alias]
alias = !git config --list | grep 'alias\\.' | sed 's/alias\\.\\([^=]*\\)=\\(.*\\)/\\1\\\t => \\2/' | sort
b = branch -a
br = branch
ci = commit
co = checkout
d = diff
dc = diff --cached
f = fetch --prune
info = remote show origin
l = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cd) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
lg = log --graph
s = status --short --branch
st = status
su = submodule update
[log]
date = local
[rerere]
enabled = true
[pull]
rebase = true
[gpg]
format = ssh
[commit]
gpgsign = true