-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
52 lines (43 loc) · 1.06 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
[user]
name = Florian Pondepeyre
email = [email protected]
[core]
excludesfile="~/.gitignore"
autocrlf = input
safecrlf = false
[alias]
ci = commit
di = diff --word-diff
sdi = diff --staged --word-diff
sdiff = diff --staged --word-diff
st = status
sta = stash
br = branch -avv
co = checkout
cat = cat-file -p
lg = log --graph --pretty=tformat:'%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%an %ar)%Creset'
lga = "!sh -c 'git log --author=\"$1\" -p $2' -"
lint = "!sh -c 'git status | awk \"/modified/ {print \\$3} /new file/ {print \\$4}\" | xargs -L 1 php -l'"
logg = log --oneline --graph
tree = log --graph --decorate --pretty=oneline --abbrev-commit
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
type = cat-file -t
dump = cat-file -p
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[push]
default = upstream
[status]
showUntrackedFiles = all
[diff]
wordRegex = .
[pull]
rebase = preserve
[merge]
log = true
conflictStyle = diff3
[rerere]
enabled = true