-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
33 lines (32 loc) · 757 Bytes
/
gitconfig
File metadata and controls
33 lines (32 loc) · 757 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
28
29
30
31
32
33
[include]
path = ~/.gitconfig_sys
[core]
editor = vim
excludesfile = ~/.gitignore_global
[merge]
tool = vimdiff
[alias]
st = status --short
cm = commit -m
llg = log --graph --color --decorate --date-order --stat
lg = log --graph --color --pretty='format:%C(yellow)%h%C(cyan)%d %Creset%s %C(blue)%an, %ar' --date-order
lga = log --graph --color --pretty='format:%C(yellow)%h%C(cyan)%d %Creset%s %C(blue)%an, %ar' --date-order --all
co = checkout
[push]
default = current
[color]
ui = auto
[user]
name = Brian McLaughlin
email = bemclaugh@gmail.com
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[init]
defaultBranch = main