文章分类 - Git
摘要:参考的解决方案:https://blog.csdn.net/weixin_43945983/article/details/110882074 打开Git命令页面,执行git命令脚本:修改设置,解除ssl验证 git config --global http.sslVerify "false"
阅读全文
摘要:参考解决方案地址:https://blog.csdn.net/yy339452689/article/details/104040279 实际解决方案: git_bash 打开来执行下这个就可以了 git config --global --unset http.proxy
阅读全文
摘要:推送时,提示如下错误: git.exe push --progress "origin" master remote: Repository not found. fatal: Authentication failed for 'https://www.github.com/xxxxx/xxxxx
阅读全文
摘要:1、在github创建项目目录 2、在本地项目根目录下--右键--Git Bash here 3、在弹出的命令行中输入命令即可 查看本地是否有仓库 git remote 在本地创建远程仓库 add后面是仓库的名称(进入你要创建远点仓库的文件夹中) git remote add 远端库名字 远端库地址
阅读全文