当前位置:   article > 正文

解决windows命令行无法git push的问题:添加 personal access token_add a personal access token

add a personal access token

使用 git push 命令时遇到认证问题,无法push到远端,踩坑记录

1. 申请一个personal access token

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

注:本人小白,为了避免麻烦,在权限选择那里我全都选了最高权限,因为我遇到过有一些item不是选最高权限的,最后push不了

在这里插入图片描述
拿到你的token之后,在git命令行中clone你的仓库下来:

在这里插入图片描述


2. 添加token

首先移除 remote origin

在这里插入图片描述


然后添加token,token的添加方式很奇怪,就是通过添加remote origin的方式添加token,公式如下:

git remote add origin https://{your username}:{access token}@github.com/{your username}/{repository name}.git
  • 1

把用户名改成你github的用户名,仓库名改成你clone下来的仓库名(花括号删掉)

查看是否添加成功:

git remote -v
  • 1

3. 配置对应的git用户名

git config --global user.name "你的github用户名"
  • 1
git config --global user.password"你的github密码"
  • 1



4. push测试

在这里插入图片描述

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/463364
推荐阅读
相关标签
  

闽ICP备14008679号