摘要:
在git bash中,运行下列命令: git config --global core.longpaths true 就可以解决该问题。 --global是该参数的使用范围,如果只想对本版本库设置该参数,只要在上述命令中去掉--global即可。 阅读全文
摘要:
电脑蓝屏了,强制重启之后再打开IDEA里面的项目,所有Java类文件都在报Cannot resolve symbo错误,可以确定所有依赖的包都有引用且jar包没有冲突。 经查询找到这个解决方法:在IDEA中 点击 File -> Invalidate Caches/Restart,清理了缓存重启ID 阅读全文
git "Could not read from remote repository.Please make sure you have the correct access rights."解决方案
摘要:
我们在使用git clone 或其他命令的时候,有时候会遇到这类问题,如图: fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repos 阅读全文
摘要:
一、准备工作 1、确定电脑上已经成功安装jdk7.0以上版本 2、win10操作系统 3、maven安装包 下载地址:http://maven.apache.org/download.cgi 二、解压Maven安装包 在上述地址中下载最新的Maven版本,解压到指定目录(此处根据自己的需要),本人解 阅读全文