-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
30 lines (26 loc) · 812 Bytes
/
gitconfig
File metadata and controls
30 lines (26 loc) · 812 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
[color]
status = true
[user]
email = matt@wrighters.net
name = wrighter
[core]
editor = vim
whitespace = -trailing-space,-indent-with-non-tab,-tab-in-indent
[merge]
tool = vimdiff
[alias]
lg = log --graph --pretty=format:'%Cred%h%Creset %C(yellow)%an%d%Creset %s %Cgreen(%cr)%Creset' --date=relative
up = "!git remote update -p; git merge --ff-only @{u}"
hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
diffw = diff -w -U0 --word-diff-regex=[^[:space:]]
slog = log --graph --all --topo-order --pretty='format:%h %ai %s%d (%an)'
[credential]
helper = !aws codecommit credential-helper $@
UseHttpPath = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[init]
defaultBranch = main