总体思路: 1.删除本地以前的远程仓库地址 git remote rm origin 2.添加新的远程仓库地址.(一般创建后都会有这条命令) git remote add origin [url] 3.push上去 git push -u origin master