Skip to content

Instantly share code, notes, and snippets.

@crofty
Created May 24, 2010 08:36
Show Gist options
  • Select an option

  • Save crofty/411655 to your computer and use it in GitHub Desktop.

Select an option

Save crofty/411655 to your computer and use it in GitHub Desktop.
# Setup a git repo on dreamhost
ssh user@server.com
mkdir ~/git/my_app.git && cd ~/git/my_app.git
git --bare init
exit
cd my_app
git remote add origin user@server.com: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