forked from r00k/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
41 lines (38 loc) · 800 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
[user]
name = Mark Johnson
email = markj9@gmail.com
[alias]
co = checkout
cleanup = !git remote prune origin && git gc && git clean -df && git stash clear
[color]
diff = auto
status = auto
branch = auto
[color "diff"]
meta = yellow
[core]
excludesfile = ~/.gitignore
editor = vim --noplugin
[apply]
whitespace = nowarn
[alias]
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
[help]
autocorrect = 1
[branch]
autosetupmerge = true
autosetuprebase = always
[push]
default = current
[rerere]
enabled = 1
[github]
user = markj9
#[merge]
# ff = only
[credential]
helper = osxkeychain
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true