简体   繁体   English

是什么导致“致命:未找到存储库'https://github.com/bemyhre/my_web.git/'”错误

[英]What is causing “fatal: repository 'https://github.com/bemyhre/my_web.git/' not found” error

I am following the instructions to try and create a remote repository and it seems I cannot for some reason from my mac. 我正在按照说明尝试创建远程存储库,但由于某些原因,我似乎无法从我的Mac中进行操作。 Any input or help would be greatly appreciated. 任何意见或帮助将不胜感激。 Below is the set of terminal commands I have been using. 以下是我一直在使用的一组终端命令。 Any thoughts? 有什么想法吗?

Bens-MacBook-Pro:week7 benmyhre$ mkdir my_web
Bens-MacBook-Pro:week7 benmyhre$ cd my_web
Bens-MacBook-Pro:my_web benmyhre$ git init
Initialized empty Git repository in /Users/benmyhre/Desktop/RubyProjects/week7/my_web/.git/
Bens-MacBook-Pro:my_web benmyhre$ touch README
Bens-MacBook-Pro:my_web benmyhre$ git ad README
git: 'ad' is not a git command. See 'git --help'.

Did you mean one of these?
    add
    am
Bens-MacBook-Pro:my_web benmyhre$ git add README
Bens-MacBook-Pro:my_web benmyhre$ git commit -m 'first commit'
[master (root-commit) 4e7b51d] first commit
 1 file changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 README
Bens-MacBook-Pro:my_web benmyhre$ git remote add origin https://github.com/bemyhre/my_web.git
Bens-MacBook-Pro:my_web benmyhre$ git push origin master
Username for 'https://github.com': #myusernamewenthere
Password for 'https://bemyhre@github.com': 
remote: Repository not found.
fatal: repository 'https://github.com/bemyhre/my_web.git/' not found

Make sure that the repository really exists. 确保存储库确实存在。 If you're trying to push to a repository that has not yet been created on GitHub, you'll get this error. 如果您尝试推送到尚未在GitHub上创建的存储库,则会收到此错误。 More details https://help.github.com/articles/error-repository-not-found 更多详细信息https://help.github.com/articles/error-repository-not-found

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 致命的:找不到存储库'https://github.com/user_name/first_app.git/' - fatal: repository 'https://github.com/user_name/first_app.git/' not found Github 远程:未找到存储库。 致命:在 Pycharm 中找不到存储库“https://github.com/org/repo.git/” - Github remote: Repository not found. fatal: repository 'https://github.com/org/repo.git/' not found in Pycharm 远程:未找到存储库。 Git pull 显示致命:使用访问令牌时未找到存储库“https://github.com/username/repositoryname.git/” - remote: Repository not found. Git pull shows fatal: repository 'https://github.com/username/repositoryname.git/' not found when using access token 致命:无法访问“https://github.com/usename/my-project.git/”:请求的 URL 返回错误:403 Mac - fatal: unable to access 'https://github.com/usename/my-project.git/': The requested URL returned error: 403 Mac Windows10 git clone https://github.com/ktbyers/netmiko” 致命错误 - Windows10 git clone https://github.com/ktbyers/netmiko&#8221 Fatal error 致命:无法访问“ https://github.com/MyName/MyRepo.git/”:请求的URL返回错误:403 - fatal: unable to access 'https://github.com/MyName/MyRepo.git/': The requested URL returned error: 403 在 Colab 中将文件推送到 Git 时出错:致命:无法读取“https://github.com”的用户名:没有这样的设备或地址 - error when pushing files to Git in Colab: fatal: could not read Username for 'https://github.com': No such device or address Git,致命:无法访问“https://github.com/path/to/repo.git”:gnutls_handshake() 失败:pull 函数出错 - Git, fatal: unable to access 'https://github.com/path/to/repo.git': gnutls_handshake() failed: Error in the pull function remote:拒绝XXX / .git的权限给YYY。 致命:无法访问“ https://github.com/XXX//”:请求的URL返回错误:403 - remote: Permission to XXX/.git denied to YYY. fatal: unable to access 'https://github.com/XXX//': The requested URL returned error: 403 无法连接到存储库:执行 git 命令时出错:ls-remote -h https://github.com/hichemmehdi/EmployeeManager.git HEAD - Failed to connect to repository : Error performing git command: ls-remote -h https://github.com/hichemmehdi/EmployeeManager.git HEAD
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM