
bug
文章平均质量分 53
流星天道酬勤
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
报错 hint: Updates were rejected because the remote contains work that you do 解决方法
1. git pull origin master --allow-unrelated-histories 2.git pull origin master 3.git init 4.git remote add origin ssh://git@git.limikeji.com:10022/yanhui/webweb.git (可忽略) 5.git add . 6.git commit -m 'testst' 7.git push -u origin master 转载于:https:/原创 2020-12-02 15:41:07 · 4619 阅读 · 3 评论 -
maven下载pom,但是不下来jar 和PKIX path building failed
如果你的jar包下载不成功的话,是会产生.lastUpdated结尾的文件,如果你不清理的话,是没办法将Maven的依赖下载完整的, 解决方案: 1、 删除所有以.lastUpdate结尾的文件 a) 1、切换到maven的本地仓库 b) 2、在当前目录打开cmd命令行 c) 3、执行命令: for /r %i in (*.lastUpdated) do del %i 2、 在项目上执行 Maven Update (Alt + F5) 3、 以上操作直到jar下载到本地仓库就ok maven 的建议原创 2021-01-20 17:25:00 · 1025 阅读 · 0 评论