Global setup:
Download and install Git git config --global user.name "Rafael Alves" git config --global user.email do_bau@hotmail.com
Next steps:
mkdir help.dobau cd help.dobau git init touch README git add README git commit -m 'first commit' git remote add origin git@github.com:dobau/help.dobau.git git push origin master
Existing Git Repo?
cd existing_git_repo git remote add origin git@github.com:dobau/help.dobau.git git push origin master
Importing a Subversion Repo?
Click here