.gitconfig

Sat, 04 Apr 2015 01:09:00 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Sat, 04 Apr 2015 01:09:00 -0400
changeset 177
6d15a355e17a
parent 173
757eaebee0a2
child 180
96dbe6a6008d
permissions
-rw-r--r--

.gitconfig additions

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

[ui]
	color = true

[core]
	pager = LESS='FSRX' less

[alias]
	ci        = commit
	record    = !sh -c '(git add -p -- $@ && git commit -v ) || git reset' --
	update    = !git fetch --all --tags --prune && git pull --rebase
	incoming  = "!git remote update -p; git log ..@{u}"
	outgoing  = log @{u}..
	glog      = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
	cleanup   = "!git branch --merged | grep  -v '\\*\\|master\\|develop' | xargs -n 1 echo git branch -d"

[branch]
	autosetuprebase = always
	autosetupmerge = always

[push]
	default = simple

[rebase]
	stat = true

[include]
	path = ~/.gitconfig.local

mercurial