pedrorijo91
9/20/2015 - 1:42 PM

gitconfig dot file

gitconfig dot file

[user]
  	name = pedrorijo91
  	email = johnDoe@mail.com
[core]
  	editor = vim 
	excludesfile = ~/.gitignore
[alias]
	aall = add --all 
	ap = add -p
	ar = add :/
	au = add -u
	br = branch
	bd = branch -D
	brd = push origin --delete
	ca = commit --amend
	cb = checkout -b
	ci = commit
	cm = checkout master
	cmsg = commit -m
	co = checkout
	df = diff --color=auto
	dfc = diff --color=auto --cached
	fa = fetch --all
	find = !git ls-tree -r --name-only HEAD | grep --color $1
	lg = log --color=always -p
	lsd = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
	pf = push -f
	pfo = push -f origin
	pfom = push -f origin master
	pfop = push -f origin gh-pages 
	pl = pull
	po = push origin
	pom = push origin master
	pop = push origin gh-pages
	ra = remote add
	rau = remote add upstream
	rum = rebase upstream/master
	rv = remote -v
	st = status
[help]
  	autocorrect = 20
[color]
  	ui = always
[push]
  	default = current