-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
41 lines (41 loc) · 980 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
[init]
templatedir = ~/.git_template
[core]
excludesfile = ~/.gitignore_global
autocrlf = input
[color]
ui = auto
[alias]
logs = log --pretty=oneline --abbrev-commit
ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cgreen\\ [%cn]" --decorate
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cgreen\\ [%cn]" --decorate --numstat
st = status
pf = push --force-with-lease
branches = branch -l --sort=-committerdate
[merge]
tool = diffmerge
keepBackup = false
[diff]
tool = diffmerge
[mergetool "diffmerge"]
cmd = diffmerge --merge\n--result=$MERGED $LOCAL $BASE $REMOTE
trustExitCode = true
[mergetool]
keepBackup = false
prompt = false
[difftool "diffmerge"]
cmd = diffmerge $LOCAL $REMOTE
[difftool]
prompt = false
[push]
default = current
[user]
name = Benjamin Moss
email = [email protected]
signingkey = Benjamin Moss <[email protected]>
[github]
user = drteeth
[commit]
gpgsign = false
[fetch]
prune = true