git config --global user.name "kev++"
git config --global user.email [email protected]
mkdir dot
cd dot
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin [email protected]:gotovoid/dot.git
git push -u origin master
cd existing_git_repo
git remote add origin [email protected]:gotovoid/dot.git
git push -u origin master
Check out the guide for step by step instructions.
END