xiongwei / Demo

Git global setup:
git config --global user.name "Your name"
git config --global user.email "your@email.com"
Create Repository
mkdir demo
cd demo
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin http://git.hjx.com/xiongwei/demo.git
git push -u origin master
Existing Git Repo?
cd existing_git_repo
git remote add origin http://git.hjx.com/xiongwei/demo.git
git push -u origin master