-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
32 lines (32 loc) · 736 Bytes
/
gitconfig
File metadata and controls
32 lines (32 loc) · 736 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
[user]
name = Steven McFarlane
email = steven@scientist.com
[core]
autocrlf = input
editor = nvim
excludesfile = /Users/stevenmcfarlane/.gitignore
[push]
default = simple
followTags = true
[alias]
co = checkout
br = branch
ci = commit
st = status
undolast = reset --soft HEAD~
last = log -1 HEAD
prune = fetch --prune
undo = reset --soft HEAD^
stash-all = stash save --include-untracked
glog = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
[status]
showUntrackedFiles = all
[difftool]
prompt = false
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[init]
defaultBranch = main