
工具
「已注销」
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Git提交的时候检查代码格式
欢迎访问我的个人主页https://www.jutil.net 在git提交的时候检查代码格式需要用到git的hook功能,在.git/hook目录下面有一些git定义好的hook脚本,这里我们要在提交前执行检查,所以用pre-commit,新建pre-commit文件,加入如下shell脚本 #!/bin/sh # #content=`./gradlew checkStyleMain checkstyleTest` content=`./gradlew :c...原创 2019-04-26 19:10:41 · 1499 阅读 · 0 评论 -
Eclipse下Maven报Artifact has not been packaged yet
欢迎访问我的个人主页https://www.jutil.net maven-dependency-plugin中有如下配置 <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> ...原创 2019-04-28 18:06:18 · 1422 阅读 · 0 评论 -
Eclipse代码配色方案设置
欢迎访问我的个人主页https://www.jutil.net 导入epf(eclipse配置)文件 可以在 http://www.eclipsecolorthemes.org/ 下载自己喜欢的eclipse配置方案,然后在Eclipse的File->Import->General->Preferences->选文件->Finish,然后会提示Restart,重启之后...原创 2019-04-28 19:59:14 · 1367 阅读 · 0 评论 -
Gti合并提交记录
欢迎访问我的个人主页https://www.jutil.net With git it’s possible to squash previous commits into one. This is a great way to group certain changes together before sharing them with others. ~ Here’s how to squas...转载 2019-04-28 20:01:06 · 591 阅读 · 0 评论