1、先把项目的.git文件夹删除,里面全是之前项目的提交记录
2、在本地项目地址启动git Bash Here后
执行命令 git remote add origin 远程仓库地址
注意后面接的是远程仓库地址
远程仓库要提前把代码块建好
3、如果出现报错:Updates were rejected because the remote contains work that you do
就执行 git pull origin master --allow-unrelated-histories
4、再把本地代码提上去即可
下面是网上找的原始资料: