Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如此处所述404,由于缺乏身份验证,从 CLI 获取私有 repo 将导致http 状态。但是,只有当我的 repo 设置为私有时才会出现这种情况,在这种情况下它设置为 public。每当我尝试获取有关我的公共回购的信息时,我仍然会收到一个404.
404
如果回购设置为公开,我不应该curl -i https://api.github.com/BrandonMercer/blogger没有收到404吗?
curl -i https://api.github.com/BrandonMercer/blogger
尝试从 CLI 检索存储库信息时,请使用curl -i https://api.github.com/repos/<username>/<repo-name>公共存储库。私有仓库需要通过令牌或-u标志进行身份验证。
curl -i https://api.github.com/repos/<username>/<repo-name>
-u