05 2020 档案
摘要:Git最小配置 某账号下所有的Git仓库都有效 git config —global user.name ‘您的名称’ git config —global user.email ‘您的Email’ 只对当前Git仓库有效 git config —local user.name ‘您的名称’ git
阅读全文
摘要:1 命令参数,里面的参数改成自己的坐标配置,以及本地第三方jar的本地路径 mvn deploy:deploy-file -DgroupId=taglibs -DartifactId=taglibs-unstandard -Dversion=20060829 -Dpackaging=jar -Dfi
阅读全文
摘要:1 详细错误 2020-05-09 14:45:45.031:INFO:oejs.Server:jetty-8.1.16.v20140903 2020-05-09 14:45:46.473:INFO:oejpw.PlusConfiguration:No Transaction manager fou
阅读全文
摘要:1 将这些忽略文件添加到.ignore文件里面 2 自己copy这些文件以及文件夹到另一个地方 3 然后删除这些文件和文件夹 4 添加所有的文件以及删除的文件到暂存区,并提交推送远程 git add --all . git commit git push 5 然后再copy回来这些文件到原来的地址,
阅读全文
摘要:1 详细异常信息 Caused by: org.springframework.beans.factory.BeanDefinitionStoreException: Failed to read candidate component class: file [/Users/zhangjin/my
阅读全文
摘要:1 错误警告 [WARNING] The requested profile "nexus" could not be activated because it does not exist. 2 仔细检查Maven的.setting文件,自己嵌套了两层profiles,注释掉多余的就可以了。 <p
阅读全文
摘要:1 自己在gitlab上建一个仓库后,后面会有一个命令使用demo,按照那个命令就可以了 直接clone项目 git clone git@new.gitlab.jiushiyaokuaile.cn:root/demo.git cd demo touch README.md git add READM
阅读全文