Created
May 24, 2010 08:36
-
-
Save crofty/411655 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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