Created
March 7, 2010 05:21
-
-
Save apipkin/324171 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
Global setup: | |
Download and install Git | |
git config --global user.name "Your Name" | |
git config --global user.email [email protected] | |
Add your public key | |
Next steps: | |
mkdir Echofin | |
cd Echofin | |
git init | |
touch README | |
git add README | |
git commit -m 'first commit' | |
git remote add origin [email protected]:apipkin/Echofin.git | |
git push origin master | |
Existing Git Repo? | |
cd existing_git_repo | |
git remote add origin [email protected]:apipkin/Echofin.git | |
git push origin master | |
Importing a Subversion Repo? | |
Click here | |
When you're done: | |
Continue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment