-
Notifications
You must be signed in to change notification settings - Fork 35
/
.gitconfig
53 lines (52 loc) · 1 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
53
[push]
default = current
followTags = true
[pull]
rebase = true
tags = true
[branch]
autosetuprebase = always
autosetupmerge = true
[user]
name = Justin Searls
email = searls@gmail.com
[core]
editor = vim
autocrlf = input
excludesfile = ~/.gitignore_global
mergetool = opendiff
autostash = true
[heroku]
account = personal
[merge]
tool = vimdiff
conflictstyle = diff3
[diff]
renames = true
[help]
autocorrect = 1
[mergetool]
prompt = false
[github]
user = searls
[credential]
helper = osxkeychain
[rebase]
autostash = true
[rerere]
enabled = true
autoupdate = true
[init]
defaultBranch = main
[alias]
force = push --force-with-lease
recent = branch --sort=-committerdate --format=\"%(committerdate:relative)%09%(refname:short)\"
[advice]
detachedHead = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[safe]
directory = /Users/justin/Library/Mobile Documents/com~apple~CloudDocs/dotfiles