美文网首页
sourcetree使用personal Access Toke

sourcetree使用personal Access Toke

作者: 飞冰凌 | 来源:发表于2022-02-16 13:26 被阅读0次

    使用sourcetree推送GitHub项目时报错:

    remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
    remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
    fatal: unable to access ‘https://github.com/xxx/xxx.git/’: The requested URL returned error: 403
    

    这是因为github现在只能使用personal access token登录,

    github上生成token的方法是,登录账号后,右上角头像->Settings->Developer settings->Personal access tokens->Generate new token

    新创建token页面中,首先设置token的名字,用于辨识token的作用,之后选择token的有效期和设置token的权限作用域,完成后的token只会显示一次,建议找个地方保存一下。当然,以后token忘记了,也可以新建一个去使用。

    sourcetree 修改方法:

    Mac电脑在sourcetree中进入项目,点击右上角【设置】,选择远程仓库,把原本的https://github.com/xxx/yyyy.git修改成https://ghp_acRdgvdf68rdfsg@github.com/xxx/yyyy.git
    格式是https://<your_token>@github.com/<USERNAME>/<REPO>.git

    image.png

    在命令行中,同样的使用该格式clone https仓库:

    git clone https://<your_token>@github.com/<USERNAME>/<REPO>.git

    相关文章

      网友评论

          本文标题:sourcetree使用personal Access Toke

          本文链接:https://www.haomeiwen.com/subject/olxdlrtx.html