-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig-linux
51 lines (51 loc) · 1.12 KB
/
gitconfig-linux
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
[init]
templatedir = ~/.git_template
defaultBranch = main
[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 = meld
[mergetool]
keepBackup = false
prompt = false
[mergetool "meld"]
cmd = meld "$LOCAL" "$MERGED" "$REMOTE" --output "$MERGED"
[mergetool "smerge"]
cmd = smerge
[diff]
tool = meld
[difftool]
prompt = false
[difftool "meld"]
cmd = meld "$LOCAL" "$REMOTE"
[difftool "smerge"]
cmd = smerge
[push]
default = current
[user]
name = Benjamin Moss
email = [email protected]
signingkey = Benjamin Moss <[email protected]>
[github]
user = drteeth
[commit]
gpgsign = false
[fetch]
prune = true
[pull]
rebase = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true