sourcetree使用personal Access Token连接Github

使用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://[email protected]/xxx/yyyy.git
格式是https://@github.com//.git

image.png

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

git clone https://@github.com//.git

你可能感兴趣的:(sourcetree使用personal Access Token连接Github)