ERROR: Repository not found. ////Git, but is not registered in the Settings.
1、ERROR: Repository not found.
这个问题是因为在你推送的github账户中,并没有这个Repository。
解决方法:
1)检查自己的github中的Repository,检查自己创建的目录,必须要两者一致;
2)先git clone下github中的Repository,然后再进行更改,这样就一定一致了。
2、ERROR: Git, but is not registered in the Settings.
git 是本地的,不关联远程库
解决方法:
本地新建新建 max_dev
git init
将文件复制到 max_dev 目录下
然后就可以了
git push
3、git remote add origin 若出现错误 fatal:remote origin already exists 则可以通过命令git remote rm origin删除 已存在的origin。