-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgitconfig
40 lines (38 loc) · 923 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
[user]
name = Hunter Richards
email = [email protected]
[core]
quotepath = false
editor = vim
[color]
ui = true
[init]
templatedir = ~/.git_template
[alias]
lgc = log origin/master..HEAD
lgg = log --graph --decorate --pretty=oneline --abbrev-commit
lggo = !git log --graph --decorate --pretty=oneline --abbrev-commit $(git merge-base origin/master HEAD || git merge-base origin/main HEAD)..
lgm = log HEAD..origin/master
merged = branch --merged
mymerges = !git log --grep='Merge pull request' --author=$USER --oneline
[diff]
tool = vimdiff
algorithm = patience
indentHeuristic = on
compactionHeuristic = true
[push]
default = upstream
[core]
packedGitLimit = 128m
packedGitWindowSize = 128m
excludesfile = ~/.gitignore
[pack]
deltaCacheSize = 128m
packSizeLimit = 128m
windowMemory = 128m
[fetch]
prune = true
[pull]
ff = only
[url "[email protected]:"]
insteadOf = https://github.com