git config --global user.name "用户名" git config --global user.email "git账号"
git clone 服务器仓储地址 cd test touch README.md git add README.md git commit -m "add README" git push -u origin master
cd existing_folder git init git remote add origin 服务器仓储地址 git add . git commit -m "Initial commit" git push -u origin master
cd existing_repo git remote add origin 服务器仓储地址 git push -u origin --all git push -u origin --tags