-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
42 lines (42 loc) · 945 Bytes
/
.gitconfig
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
42
[user]
name = Vince Buffalo
email = [email protected]
[credential]
help = osxkeychain
[push]
default = simple
[core]
editor = vim
excludesfile = /Users/vsb/.global_ignore
[color]
ui = true
[alias]
co = checkout
br = branch
ci = commit
st = status
unstage = reset HEAD --
last = log -1 HEAD
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
squash-all = "!f(){ git reset $(git commit-tree HEAD^{tree} -m \"${1:-A new start}\");};f"
staash = stash --all
[http]
postBuffer = 524288000
[filter "hawser"]
clean = git hawser clean %f
smudge = git hawser smudge %f
required = true
[github]
user = vsbuffalo
[diff "nb2md"]
textconv = nb2md
[init]
defaultBranch = main
[maintenance]
repo = /Users/vsb/projects/granges
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true