-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
45 lines (45 loc) · 1.02 KB
/
.gitconfig
File metadata and controls
45 lines (45 loc) · 1.02 KB
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
[user]
email = matthew.hansen@luminartech.com
name = Matt Hansen
[rebase]
#autosquash = true
instructionFormat = [%an] %s
[format]
pretty = format:%C(auto)%h %>(16)%C(green)%aN %C(blue)%>(14)%ar %Creset%s %C(bold yellow)%d%C(reset)
[diff]
tool = meld
[difftool]
prompt = false
[difftool "meld"]
cmd = meld "$LOCAL" "$REMOTE"
[merge]
# tool = meld
[mergetool "meld"]
# cmd = meld "$LOCAL" "$MERGED" "$REMOTE" --output "$MERGED"
[init]
templatedir = ~/.git_template
[alias]
ctags = !.git/hooks/ctags
lastused = for-each-ref --count=30 --sort=-committerdate refs/heads/ --format='%(refname:short)'
[credential]
helper = cache
[pull]
rebase = interactive
[push]
default = current
[branch]
autosetuprebase = always
# autosetupmerge = always
[submodule]
# recurse = true
[cola]
spellcheck = false
[merge]
tool = vimdiff3
[mergetool "vimdiff3"]
cmd = vim -f -d \"$MERGED\" \"$LOCAL\" \"$REMOTE\"
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true