我有一段时间,没有向github推代码。今天使用access token向github推代码的时候,总是提示The requested URL returned error: 403。
之前我按照博客[1]d的参考,用起来是没有错误的。后来,按照博客[2],在生成access token时,勾选workflow。这样,终于将代码推到gituhb,大概花了三个小时。github可能对access token的使用范围增加了权限。比如,只有勾选workflow,用户才能push代码。
完成后,推代码命令:
git clone https://user_name:access_token@github.com/user_name/project-name.git
git add -A
git commit -m "say something"
git remote set-url origin https://user_name:access_token@github.com/user_name/project-name.git
git push
git remote set-url配置后,可以在.git/config中查看到信息:
vi .git/config
Reference:
[1]github 配置使用 personal access token 认证
[2]解决git push报错:The requested URL returned error: 403
网友评论