初始化
mkdir test
cd test
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/test.git
git push -u origin "master"
新建分支并推到新分支
git init
git remote add origin https://gitee.com/test.git
git checkout -b newTest
git add .
git commit -m "new commit"
git push -u origin "newTest"