分行仍在从旧帐户推送

问题描述 投票:0回答:1

我需要切换 github 帐户才能将某些内容推送到公司 github 帐户。我尝试更改为新用户名,但经常被拒绝。

    remote: Permission to Company/project.git denied to oldUserName.
    fatal: unable to access 'https://company.com/Company/project.git/': The requested URL returned error: 403

以下是我完成的所有故障排除:

  1. gh 身份验证注销/gh 身份验证登录。当我检查状态时,我显然已登录到正确的帐户,但仍然无法从中推送。
  2. git config --global user.email“[电子邮件受保护]
  3. 为我的新用户名设置 SSH 密钥
  4. git 远程设置 url https://github.com/userUserName/project。 url 是从 git remote -v 获取的,并出现以下错误:
usage: git remote set-url [--push] <name> <newurl> [<oldurl>]
   or: git remote set-url --add <name> <newurl>
   or: git remote set-url --delete <name> <url>

    --[no-]push           manipulate push URLs
    --[no-]add            add URL
    --[no-]delete         delete URLs
    enter code here

我已经阅读了大量的 stackoverflow 问题和 github 教程,但它们似乎都失败了。我真的很感谢任何建议或帮助。

git ubuntu github github-cli
1个回答
0
投票

我设置了另一个 ssh 密钥并删除了旧的。

© www.soinside.com 2019 - 2024. All rights reserved.