-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
48 lines (41 loc) · 1.12 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
[user]
name = Arnaud Didry
email = [email protected]
[color]
ui = auto
diff = auto
[alias]
st = status
ci = commit -v
br = branch
co = checkout
df = diff
lg = log -p
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
ls = ls-files
[core]
# Global exclude file
excludesfile = ~/.gitignore_global
# Tell Git which whitespace problems it should recognize, namely any whitespace at the end of a line, as well as mixed spaces and tabs
whitespace = trailing-space,space-before-tab
editor = vi
[branch]
# When branching off a remote branch, automatically let the local branch track the remote branch
autosetupmerge = true
[push]
# When pushing without giving a refspec, push the current branch to its upstream branch
default = simple
autoSetupRemote = true
[rerere]
# Enable the recording of resolved conflicts, so that identical hunks can be resolved automatically later on.
enabled = true
[merge]
tool = meld
[mergetool "meld"]
cmd = meld
trustExitCode = false
[diff]
tool = meld
[difftool "meld"]
cmd = meld