.gitconfig

Sun, 29 Jan 2017 05:56:34 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 29 Jan 2017 05:56:34 -0500
changeset 494
d6d298c93437
parent 492
e5d6f6523162
child 496
e398f840bf3c
permissions
-rw-r--r--

I like verbose commits

[user]
	email = mhoward@roomag.org
	name  = Meredith Howard

[transfer]
        fsckobjects = true

[ui]
	color = true

[core]
	pager = LESS='FSRX' less

[diff]
	compactionheuristic = true

[alias]
	ci      = commit
	rec     = commit -p
	unrec   = checkout --patch
	st      = status -sb
	co      = checkout
	br      = branch
	staged  = diff --cached
	unstage = reset HEAD --
	up      = pull -r --prune
	update  = "!git remote update -p && git merge --ff-only --stat @{u}"
	in      = "!git remote update -p; git log --pretty=onelinecustom ..@{u}"
	out     = "!git log --pretty=onelinecustom @{u}.."
	new     = "!git log --pretty=onelinecustom $1@{1}..$1@{0}"
	cleanup = "!git branch --merged | grep  -v '\\*\\|master\\|develop' | xargs -n 1 echo git branch -d"
	glog    = log --graph --pretty=onelinecustom
	recent  = !sh -c 'git for-each-ref --count=${1:-20} --sort=-committerdate --format=\"%(committerdate:short) %(refname:short)\" ${@:2}' -

[pretty]
	onelinecustom = tformat:%C(magenta)%h%Creset -%C(yellow)%d%Creset %s %C(green)(%cr)%Creset %C(cyan)<%an>%Creset

[branch]
	autosetuprebase = always
	autosetupmerge  = always

[push]
	default = current

[rebase]
	stat = true

[commit]
	verbose = 1

# include.path is available in git 1.7.10 and later
[include]
	path = ~/.gitconfig.local

# vim: noet:sw=8

mercurial