在我们的github进行两因素身份验证设置后,由于出现“找不到存储库”错误,我无法在命令行上执行拉入或推入操作。
C:\myproject>git push origin mybranch
Username for 'https://github.com': myname
Password for 'https://myname@github.com':
remote: Repository not found.
fatal: repository 'https://github.com/myproject.git/' not found
如何解决此问题?
答案 0 :(得分:0)
仔细检查您的URL。
它不应为https://github.com/myproject.git/
,而应为https://github.com/myusername/myproject.git/
答案 1 :(得分:0)
对于面临相同问题的人们,
启用2FA要求我们使用个人访问令牌(PAT)代替我们的密码。可以从“开发人员设置”选项卡生成PAT。生成令牌时,请确保提供必要的权限(范围),如回购读/写访问等,
这对我有用。