Talk:Git
From BC$ MobileTV Wiki
The original steps associated with a new GitHub account:
Global setup
Set up git git config --global user.name "Bryan Copeland" git config --global user.email bc@bcmoney-mobiletv.com
Next steps
mkdir MobileTV cd MobileTV git init touch README git add README git commit -m 'first commit' git remote add origin git@github.com:BCmoneyMobileTV/~~PROJECT~~.git git push -u origin master
Existing Git Repo?
cd existing_git_repo git remote add origin git@github.com:~~USERNAME~~/~~PROJECT_NAME~~.git git push -u origin master
Importing a Subversion Repo?
Check out the guide for step by step instructions.