-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
39 lines (39 loc) · 1022 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
[user]
email = morndoff.dev@gmail.com
name = Matthew Orndoff
[core]
excludesfile = ~/.gitignore_global # Sets global excludes file
editor = vim
pager = less -r
autocrlf = input
[color]
diff = auto
status = auto
branch = auto
ui = always
[alias]
a = add
s = status -s
co = checkout
lg = !git log --graph --pretty=oneline --abbrev-commit
br = branch
h = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
l = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=short
[color "diff"]
meta = yellow
frag = magenta
old = red bold
new = green
plain = white
[color "status"]
added = green
changed = yellow
untracked = cyan
[help]
autocorrect = 1
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[gui]
recentrepo = /Users/dev/Gdrive/Documents/Worktable/Playground/git/GitPractice