Skip to content

Instantly share code, notes, and snippets.

@crofty
Created May 24, 2010 08:36
Show Gist options
  • Save crofty/411655 to your computer and use it in GitHub Desktop.
Save crofty/411655 to your computer and use it in GitHub Desktop.
# Setup a git repo on dreamhost
ssh [email protected]
mkdir ~/git/my_app.git && cd ~/git/my_app.git
git --bare init
exit
cd my_app
git remote add origin [email protected]:git/my_app.git
git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment