随笔分类 -  开发工具

摘要:参考地址 http://blog.csdn.net/fyj568213959/article/details/51643888 阅读全文
posted @ 2018-11-14 17:21 姩澕 阅读(229) 评论(0) 推荐(0)
摘要:一、 本地初始化 git init 本地关联远程 git remote add origin http://gitlab. .com:520/zdl/httpclient.git git add ./ git commit m '第一次提交' 之后进行推送 git push origin maste 阅读全文
posted @ 2018-11-14 16:37 姩澕 阅读(142) 评论(0) 推荐(0)
摘要:http://archive.apache.org/dist/ 阅读全文
posted @ 2018-09-11 14:01 姩澕 阅读(151) 评论(0) 推荐(0)
摘要:插件配置 ctrl+alt+s 搜索maven,进行配置maven仓库 搜索plugins添加mybatis插件 搜索git配置路径指向安装目录的git.exe 有道词典插件:Translation(alt + 0 和 alt+1) maven视图插件 搜索maven helper "主题地址" : 阅读全文
posted @ 2018-03-28 23:48 姩澕 阅读(351) 评论(0) 推荐(0)
摘要:gitignore简述 输入 touch .gitignore ,生成“.gitignore”文件 /mtk/ 过滤整个文件夹 .zip 过滤所有.zip文件 /mtk/do.c 过滤某个具体文件 !/dir/subdir/ !开头表示不过滤 fd1/ 忽略目录 fd1 下的全部内容;注意,不管是根 阅读全文
posted @ 2018-03-28 22:51 姩澕 阅读(161) 评论(0) 推荐(0)