完成git init
、git add .
和之后git commit
,推送到 Github 会出现以下错误:
HOLLYs-MacBook-Pro-2:Thankful dylanknight$ git push origin master
remote: Repository not found.
fatal: repository 'https://github.com/Dknight2017/thankful.app.git/' not found
HOLLYs-MacBook-Pro-2:Thankful dylanknight$
我已经从存储库中提取了内容,但当我尝试推送到 Github 时,总是出现此错误。如何正确连接到我的远程存储库?
答案1
看来您不在正确的目录中。克隆 repo 时,您应该得到一个名为 的文件夹thankful-app
。如果您cd
进入该目录并执行此操作,ls -la
您应该会看到一个.git
文件夹。
一旦到达该位置,就尝试执行 git push。
我尝试推动它,并得到了Permission denied
预期的结果。