我正在使用Gitbash来提交我的项目但是我得到了以下内容 错误和我遇到致命错误的存储库不是 我正在进行提交的远程存储库。 我想改变这个回购
$ git push -u origin master
Fatal: HttpRequestException encountered.
Username for 'https://github.com': 4bhishekKasam
remote: Repository not found.
fatal: repository 'https://github.com/4bhishekKasam/Authentication-using-Passportjs.gi/' not found
答案 0 :(得分:0)
现在我创建了新的仓库仍然无法提交
首先,您的错误是您希望将提交推送到远程GitHub仓库,而不是在您提交时。 您可以提交:它是一个本地操作,它不关心远程仓库。
但请尝试:
cd /path/to/local/repo
git remote set-url origin https://github.com/4bhishekKasam/Passportjs.git
(或git remote add origin ...
,如果您之前未设置origin
然后您的git push -u origin master
将有效。