-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
43 lines (36 loc) · 808 Bytes
/
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
[http]
sslVerify = false
[alias]
cm = commit -m
co = checkout
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %C(bold)%s %Creset| %Cgreen%cr %C(white)%cn%Creset' --abbrev-commit --date=relative
st = status
df = diff -w
ac = !git add -p && git commit -v
acp = !git add -p && git commit -v && git push
[color]
branch = auto
diff = auto
status = auto
[branch]
autosetuprebase = always
[push]
default = current
[core]
repositoryformatversion = 0
filemode = true
quotepath = off
precomposeunicode = true
autocrlf = input
[i18n]
logoutputencoding = utf8
commitencoding = utf8
[merge]
tool = kdiff3
ff = only
[mergetool "kdiff3"]
path = /usr/local/bin/kdiff3
keepBackup = false
trustExitCode = false
[credential]
helper = store