gitee 上传远程仓库失败
1:添加本地id_rsa.pub文件内容到gitee SSH Keys (添加公开密钥)
2:设置本地的邮箱和用户名
git config --global user.name "MARS"
git config --global user.email "youremail@example.com"
3:查看远程连接
git remote -v
4:确认连接是否正确
否则删除=> git remote rm origin
5:关联远程仓储
git remote add origin https://gitee.com/MARS/yourProject.git
6:同步代码
git push -u origin master
完美完成,希望对大家有帮助
MARS 20201217