关于git初始化流程和问题处理

需要秘钥时,参考:初次使用git配置以及git如何使用ssh密钥(将ssh密钥添加到github) - superGG1990 - 博客园 (cnblogs.com)

不需要ssh key配置时,可直接设置用户信息:

git config --global user.name [username]
 
git config --global user.email [email]

2、查询用户信息

git config --list

这时候一般来说就可以使用了.

如果push遇到在输入密码是熟错后,就会报这个错误fatal: Authentication failed for

这个很明显翻译过来就是""身份验证失败"",无非就是你的默认设置的用户或者密码不对,为什么已经全局已经设置了用户密码还是会报错呢?接着看,

解决办法:

git config --system --unset credential.helper

这个就是卸载了你自己的证书

之后你在push就会提示输入名称和密码

 

ps:如果在上步操作时报错

 

 可以去这个文件夹,给全部的权限

 

 再 git config --system --unset credential.helper 就成功了

 

参考(4条消息) 解决git error: could not lock config file C:/Program Files/Git/mingw64/etc/gitconfig: Permission denie_山水天元的博客-CSDN博客

posted on 2022-11-29 23:11  SE7EN_96  阅读(73)  评论(0编辑  收藏  举报

导航