摘要: 造成这个错误很有可能是网络不稳定,连接超时导致的, 如果再次尝试后依然报错,可以执行下面的命令。 git config --global http.sslVerify "false" 阅读全文
posted @ 2022-02-22 20:24 weiambt 阅读(161) 评论(0) 推荐(0)
摘要: 使用命令去修改用户(Gitee的账号和邮箱) git config user.name "zhangsan" git config user.email "123@qq.com" 或者使用vim进入到配置文件(.git/config)中,对参数进行修改 vim .git/config 阅读全文
posted @ 2022-02-22 20:21 weiambt 阅读(724) 评论(0) 推荐(0)
摘要: 错误情况 在push的时候有发现没有权限 remote: [session-ec47d9ba] Access denied fatal: unable to access 'https://gitee.com/../..': The reques URL returned error: 403 解决 阅读全文
posted @ 2022-02-22 20:16 weiambt 阅读(325) 评论(0) 推荐(0)
摘要: 1.Gitee上创建一个远程仓库,并且设置为public 2.将这个仓库克隆到本地 仓库URL后面加上“.git” 3.建立远程连接 git remote add origin https://weiambt@gitee.com/weiambt/ssm_crud.git 或者(下面这个有可能会错) 阅读全文
posted @ 2022-02-22 20:08 weiambt 阅读(213) 评论(0) 推荐(0)
摘要: 发现问题 org.apache.ibatis.binding.BindingException: Invalid bound statement (not found) top.ambtwill.dao.DepartmentMapper.select mapper文件报错 原因 检查有没有将mapp 阅读全文
posted @ 2022-02-22 14:48 weiambt 阅读(71) 评论(0) 推荐(0)