-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
40 lines (40 loc) · 965 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
[user]
name = Andy Appleton
email = [email protected]
[core]
editor = vim
excludesfile = ~/.gitignore_global
[color]
branch = auto
diff = auto
status = auto
[difftool]
prompt = false
[mergetool]
keepBackup = true
[push]
default = current
[credential]
helper = osxkeychain
[alias]
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
[http "https://git.staging.herokudev.com/"]
sslVerify = false
[alias]
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
l = log --pretty=colored
[pretty]
colored = format:%Cred%h%Creset %s %Cgreen(%cr) %C(bold blue)%an%Creset
[commit]
gpgsign = true
[github]
user = appleton
[gpg]
program = /opt/homebrew/bin/gpg
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true