-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
41 lines (41 loc) · 878 Bytes
/
gitconfig
File metadata and controls
41 lines (41 loc) · 878 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
34
35
36
37
38
39
40
41
[alias]
st = status -sb
br = branch -vv
di = diff
dis = diff --stat
dc = diff --cached
dcs = diff --cached --stat
l = log --pretty=oneline -n 20 --graph --abbrev-commit
lp = log -p
gr = log --all --graph --decorate --oneline
lv = log --all --graph --decorate
snap = commit -am "Snapshot"
update-submodules = submodule update --init --recursive
upgrade-submodules = submodule update --init --remote
[init]
defaultBranch = main
[merge]
tool = vimdiff
[user]
email = labelljd@gmail.com
name = Joshua LaBelle
signingkey = 8A0C2DB7BF66FA7B
[github]
user = jdlabelle
[core]
editor = vim
excludesFile = ~/.gitignore_global
[branch]
sort = -committerdate
[column]
ui = auto
[tag]
sort = version:refname
[diff]
algorithm = histogram
colorMoved = plain
renames = true
[help]
autocorrect = prompt
[commit]
verbose = true