0
点赞
收藏
分享

微信扫一扫

git报错

西红柿上校 2022-04-25 阅读 47
git

git 将本地仓库提交远程仓库输入: git push -u origin master命令
报错:remote: Check Access Error, please check your username and password!

解决方案:
打开控制面板 —> 搜索凭据 —> Windows凭据 —> 找到git相关的可以在编辑处直接修改密码,也可以删除后重新构建
在这里插入图片描述
在这里插入图片描述

需要配合

// 全局
// 更改用户名
$ git config --global user.name "你的用户名"

// 更改邮箱
$ git config --global user.email "你的邮箱地址"

// 更改密码
$ git config --global user.password "你的密码"

// 查看
$ git config user.name(user.email or user.password)
举报

相关推荐

0 条评论