-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
25 lines (25 loc) · 1.07 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
[core]
autocrlf = input
safecrlf = true
eol = lf
excludesfile = ~/.config/git/ignore
attributesfile = ~/.config/git/attributes
[user]
name = Roger Qiu
email = [email protected]
signingkey = 0D3FB2EEAF121097
[commit]
gpgsign = true
[tag]
gpgsign = true
[credential]
helper = cache --timeout=1800
[alias]
cloner = clone --recursive
tree = log --graph --branches --remotes --tags --decorate --pretty=oneline --abbrev-commit
tree-stat = log --graph --branches --remotes --tags --decorate --pretty=oneline --abbrev-commit --stat
tree-patch = log --graph --branches --remotes --tags --decorate --pretty=oneline --abbrev-commit --patch
srv = !git daemon --base-path=. --reuseaddr --informative-errors --verbose
srv-all = !git daemon --base-path=. --export-all --reuseaddr --informative-errors --verbose
srv-rcv = !git daemon --base-path=. --enable=receive-pack --reuseaddr --informative-errors --verbose
srv-rcv-all = !git daemon --base-path=. --export-all --enable=receive-pack --reuseaddr --informative-errors --verbose