Skip to content
TMaYaD edited this page Sep 13, 2010 · 2 revisions

Welcome to the Jeeves wiki!

Global setup:
Download and install Git
git config —global user.name “Your Name”
git config —global user.email TMaYaD+github@gmail.com

Next steps:
mkdir test
cd test
git init
touch README
git add README
git commit -m ‘first commit’
git remote add origin git@github.com:TMaYaD/test.git
git push origin master

Existing Git Repo?
cd existing_git_repo
git remote add origin git@github.com:TMaYaD/test.git
git push origin master

Importing a SVN Repo?
Click here

When you’re done:
Continue

Clone this wiki locally