-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
44 lines (35 loc) · 674 Bytes
/
gitconfig
File metadata and controls
44 lines (35 loc) · 674 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
42
43
44
# vim: set noet ts=4 sw=4 ft=gitconfig:
[core]
excludesfile = ~/.gitignore_global
autoclrf = input
safeclrf = true
[user]
email = matt@mattikus.com
name = Matt Kemp
[color]
ui = true
[alias]
st = status -s
amend = commit --amend -C HEAD
undo = reset --soft HEAD^
count = shortlog -sn
nst = !PAGER=cat git diff --name-status
graph = log --oneline --graph
tags = tag -l
branches = branch -a
remotes = remote -v
up = pull --autostash --rebase
staged = diff --staged
[branch]
autosetupmerge = true
autosetuprebase = always
[fetch]
prune = true
[help]
autocorrect = 1
[push]
default = upstream
[rerere]
enabled = true
[diff]
algorithm = patience