-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
57 lines (47 loc) · 1.27 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
51
52
53
54
55
56
57
[user]
name = Charles-Henri Bruyand
email = [email protected]
signingkey = EAE1BF07
[color]
ui = true
branch = auto
diff = auto
interactive = auto
status = auto
[diff]
# Detect copies as well as renames
renames = copies
noprefix = true
[diff "bin"]
# Use `hexdump` to diff binary files
textconv = hexdump -v -C
[core]
editor = emacs -nw
pager = less -x8
excludesfile = ~/.gitignore_global
[alias]
ci = commit
st = status
br = branch
co = checkout
df = diff
dc = diff --cached
lg = log -p
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
ls = ls-files
amend = commit --amend -C HEAD
undo = reset --soft HEAD^
graph = log --graph --pretty=format':%C(yellow)%h%Cblue%d%Creset %s %C(white) %an, %ar%Creset'
[branch]
autosetuprebase = always
[merge]
summary = true
# Include summaries of merged commits in newly created merge commit messages
log = true
[rebase]
autosquash = true
[commit]
gpgsign = true
[hub]
protocol = https