.gitconfig

Mon, 01 Jun 2015 17:13:18 -0700

author
Meredith Howard <mhoward@roomag.org>
date
Mon, 01 Jun 2015 17:13:18 -0700
changeset 186
4d168818b573
parent 182
5a18e80bf2ea
child 190
38ea48f9eae9
permissions
-rw-r--r--

verbose git-up

[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"
	ctags     = !~/.git_helpers/ctags

[branch]
	autosetuprebase = always
	autosetupmerge = always

[push]
	default = simple

[rebase]
	stat = true

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

# https://github.com/aanand/git-up
# $ gem install git-up
[git-up "rebase"]
	log-hook = "echo \"changes on $1 -> $2:\"; git log --oneline --decorate $1..$2"

mercurial