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


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

1. 申请一个personal access token

解决windows命令行无法git push的问题:添加 personal access token_第1张图片
解决windows命令行无法git push的问题:添加 personal access token_第2张图片
解决windows命令行无法git push的问题:添加 personal access token_第3张图片
解决windows命令行无法git push的问题:添加 personal access token_第4张图片

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

解决windows命令行无法git push的问题:添加 personal access token_第5张图片
拿到你的token之后,在git命令行中clone你的仓库下来:

解决windows命令行无法git push的问题:添加 personal access token_第6张图片


2. 添加token

首先移除 remote origin

解决windows命令行无法git push的问题:添加 personal access token_第7张图片


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

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

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

查看是否添加成功:

git remote -v

3. 配置对应的git用户名

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



4. push测试

解决windows命令行无法git push的问题:添加 personal access token_第8张图片

你可能感兴趣的:(git,git,github)