summary refs log tree commit diff
path: root/gitconfig
blob: 18e97ac560e7c1a1e818c9de85d0d3dca32e076c (plain) (blame)
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
[color]
	ui = true

[push]
	default = simple

[alias]
	amend = commit --amend
	br = branch
	ci = commit
	co = checkout
	g = "grep --heading --break"
	pending = !GIT_CURRENT_BRANCH=$(git name-rev --name-only HEAD) && git log origin/$GIT_CURRENT_BRANCH..$GIT_CURRENT_BRANCH --oneline
	pr = pull --rebase
	st = status -sb
	lg = log --graph --oneline --decorate

[core]
	whitespace = trailing-space,space-before-tab
	excludesfile = ~/.gitignore

[branch]
	autosetuprebase = remote

[include]
	path = ~/.gitconfig.private

[http]
	postBuffer = 524288000