Skip to content

Instantly share code, notes, and snippets.

View lovato's full-sized avatar

Marco Lovato lovato

  • Vancouver WA, USA
View GitHub Profile
@lovato
lovato / .gitconfig
Last active August 29, 2015 13:57 — forked from jbonney/.gitconfig
[user]
email = <your email>
name = <your name>
[gitreview]
username = <your username>
[alias]
newf = !bash -c 'git checkout -b feature/$0'
uploadf = !bash -c 'git push origin `git rev-parse --abbrev-ref HEAD`'
updatef = !bash -c 'git fetch && git merge master --no-ff'
gof = !bash -c 'git checkout feature/$0'