Skip to content

Instantly share code, notes, and snippets.

View mnewt's full-sized avatar

Matthew Newton mnewt

View GitHub Profile
@mnewt
mnewt / gist:2860939
Created June 3, 2012 01:52
git reference
#set up git on project directorygit init
git add .
git commit -m "Initial commit"
#set up remote push
git remote add origin git@github.com:mattnewton/app_name.git
git push origin master
#initial heroku setup
#download and install heroku toolbelt