设置远程分支:
git init
git add README.md
git commit -m "first commit"
git remote add origin https://xxxx.git
git push -u origin master
如果报403需要更新下用户密码,如果git push没有提示输入用户密码
git config --system --unset credential.helper 输入这个指令
重新输入正确用户密码
如果下次提交不想输入用户密码:
git config --global credential.helper store