Skip to content

Instantly share code, notes, and snippets.

@apipkin
Created March 7, 2010 05:21
Show Gist options
  • Save apipkin/324171 to your computer and use it in GitHub Desktop.
Save apipkin/324171 to your computer and use it in GitHub Desktop.
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