删除原有.git文件
Git Bash Here -> rm -r .git 或者 find . -name ".git" | xargs rm -Rf 或者 rm -rf .git
开始关联
git init
git remote add origin Github仓库地址 //https://github.com/xxx/xxxx.git
git pull origin master //第一次拉取代码会出现fatal: couldn't find remote ref master,忽略
git add .
git commit -m "first commit" //-m 加上就不会出现需要:wq的步骤
git push origin master
如果出现这个错误
fatal: refusing to merge unrelated histories
解决
git pull origin master --allow-unrelated-histories
网友评论