You should have trusted me.

This commit is contained in:
Tyrel Souza 2015-09-15 13:15:20 -04:00
parent fdec5c230e
commit 2f754c635f
1 changed files with 35 additions and 0 deletions

35
gitconfig Normal file
View File

@ -0,0 +1,35 @@
[push]
default = current
[color]
ui = auto
[alias]
aa = add --all
ap = add --patch
ca = commit --amend
ci = commit -v
co = checkout
co-pr = !sh -c 'git fetch origin pull/$1/head:pr/$1 && git checkout pr/$1' -
create-branch = !sh -c 'git push origin HEAD:refs/heads/$1 && git fetch origin && git branch --track $1 origin/$1 && cd . && git checkout $1' -
delete-branch = !sh -c 'git push origin :refs/heads/$1 && git branch -D $1' -
merge-branch = !git checkout master && git merge @{-1}
pr = !hub pull-request
st = status
up = !git fetch origin && git rebase origin/master
[core]
excludesfile = ~/.gitignore
autocrlf = input
[merge]
ff = only
[include]
path = .gitconfig.local
[commit]
template = ~/.gitmessage
[fetch]
prune = true
[user]
name = Tyrel Souza
email = tyrelsouza@gmail.com
[filter "media"]
clean = git media clean %f
smudge = git media smudge %f
required = true