-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
27 lines (27 loc) · 983 Bytes
/
gitconfig
File metadata and controls
27 lines (27 loc) · 983 Bytes
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
[user]
name = David Matlack
email = matlackdavid@gmail.com
[core]
excludesfile = /home/david/.gitignore
editor = vim
[merge]
tool = vimdiff
[color]
ui = auto
[alias]
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
lg1 = log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(bold white)— %an%C(reset)%C(bold yellow)%d%C(reset)' --abbrev-commit --date=relative
lg2 = log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(bold white)— %an%C(reset)' --abbrev-commit
lg = !"git lg1"
st = status
br = branch
co = checkout
cm = commit
[diff]
renamelimit = 4621
[sendemail]
smtpencryption = tls
smtpserver = smtp.gmail.com
smtpuser = matlackdavid@gmail.com
smtpserverport = 587