Global setup:
Set up git git config --global user.name "username" git config --global user.email my@gmail.com
Next steps:
mkdir depot cd depot git init touch README git add README git commit -m 'first commit' git remote add origin git@github.com:my/depot.git git push -u origin master
Existing Git Repo?
cd existing_git_repo git remote add origin git@github.com:my/depot.git git push -u origin master
Importing a Subversion Repo?
Click here
When you're done:
Continue