-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
34 lines (34 loc) · 1 KB
/
.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
[user]
name = "Noah Hall"
email = "[email protected]"
[color]
ui = auto
interactive = auto
status = true
[alias]
stat = status
st = status
ci = commit
co = checkout
diff = diff --color-words
graph = log --pretty=format:'%h %s' --graph
bgraph = log --graph --simplify-by-decoration --pretty=format:'%d' --all
bdates = for-each-ref --sort=-committerdate --format='%(objectname:short) \t %(committerdate:short) \t %(refname:short) \t %(subject)' refs/heads/
today = log --stat --since="6am"
oldest-ancestor = !bash -c 'diff --old-line-format= --new-line-format= <(git rev-list --first-parent \"${1:-master}\") <(git rev-list --first-parent \"${2:-HEAD}\") | head -1' -
[core]
excludesfile = ~/.gitignore_global
editor = vim
pager = less -r
autocrlf = input
[push]
default = simple
[merge "ours"]
driver = true
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
driver = true
[credential]
helper = store