作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
操作系统:佐林
我使用 ssh git clone git@github.com:Organization_Name/Repo_Name.git
克隆了一个公共(public)仓库
然后我创建了一个分支并尝试使用 git push --set-upstream origin My_Branch
推送到 repo
我提示输入用户名和密码
Username for 'https://github.com': qingqing0226
Password for 'https://qingqing0226@github.com': My_Token
注意:我在生成 token 时授予了所有权限,所以我猜不存在范围问题。
remote: Permission to Organization_Name/Repo_Name.git denied to qingqing0226.
fatal: unable to access 'https://github.com/Organization_Name/Repo_Name.git/': The requested URL returned error: 403
我尝试多次推送,但总是收到相同的错误消息。似乎密码( token )不正确,但我将其粘贴到 txt 文件中以检查它并且它是正确的(最后没有多余的空间)。
git config -l
的结果:
user.email=My_Email
user.name=qingqing0226
user.password=My_Token
credential.helper=store
url.git@github.com:.insteadof=https://github.com/
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
remote.origin.url=git@github.com:Organization_Name/Repo_Name.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.main.remote=origin
branch.main.merge=refs/heads/main
更新:我设置了 ssh key 并再次推送并得到新错误:
The authenticity of host 'github.com (140.82.121.4)' can't be established.
ECDSA key fingerprint is SHA256:p2QAMXNIC1TJYWeIOttrVc98/R1BUFWu3/LiyKgUfQM.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added 'github.com,140.82.121.4' (ECDSA) to the list of known hosts.
ERROR: Permission to Organization_Name/Repo_Name.git denied to qingqing0226.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
看来我不允许访问 repo
最佳答案
I created a fork and everything is solved.
A fork is a copy of a repository that you manage.
关于git - 无法使用个人访问 token ubuntu/zorin 推送到远程仓库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72708454/
我是一名优秀的程序员,十分优秀!