-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgitconfig
50 lines (50 loc) · 1.16 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
[include]
path = ~/.gitconfig.local
[core]
attributesfile = ~/.gitattributes
autocrlf = input
editor = vim
excludesfile = ~/.gitignore_global
[color]
pager = true
ui = auto
branch = auto
diff = auto
status = auto
[push]
default = matching
[alias]
br = branch
co = checkout
ci = commit
cia = commit -av
st = status --untracked-files=no
up = pull
pp = pull --prune
l = log --oneline --stat
ll = log --graph --all --oneline --decorate
graph = log --pretty=format:\"%C(yellow)%h %ar %C(auto)%d %Creset %s , %Cblue%cn\" --graph --all
root = rev-parse --show-toplevel
[log]
date = relative
[format]
pretty = format:%C(auto,yellow)%h%C(auto,magenta)% G? %C(auto,blue)%>(14,trunc)%ad %C(auto,green)%<(13,trunc)%aN%C(auto,reset)%s%C(auto,red)% gD% D
[merge]
tool = vimdiff
stat = true
[diff]
mnemonicprefix = true
compactionHeuristic = true
algorithm = histogram
[diff "gpg"]
textconv = gpg --no-tty -qd
[diff "org"]
xfuncname = "^\\*+ +.*$"
[branch]
autosetupmerge = true
[gpg]
program = gpg
[user]
signingkey = 6CBBDA995E2D619C
[commit]
verbose = true