-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
44 lines (43 loc) · 1.04 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
[user]
name = Albert Le Batteux
email = [email protected]
signingkey = 6ECDB1C9555BCE18
[core]
editor = vim
#whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore
#pager = diff-so-fancy | less --tabs=4 -RFX
[web]
browser = opera
[color]
ui = auto
[color "branch"]
current = yellow bold
local = green bold
remote = cyan bold
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
whitespace = red reverse
[color "status"]
added = green bold
changed = yellow bold
untracked = red bold
[diff]
tool = vimdiff
[github]
user = albttx
token = token
[alias]
github = "config --global user.email '[email protected]'"
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
delete-merged-branches = "!git checkout master && git branch --merged | grep -v '\\*' | xargs -n 1 git branch -d"
[commit]
gpgsign = true
[gpg]
program = gpg
[url "[email protected]:"]
insteadOf = https://github.com/