2020年7月21日
摘要: git常用命令 #查看配置 git config -l #查看系统config git config --system --list #查看当前用户(global)配置 git config --global --list #用户的配置信息存放目录 C:\Users\Administrator\ . 阅读全文
posted @ 2020-07-21 14:55 有梦可有为 阅读(89) 评论(0) 推荐(0) 编辑
摘要: Linux 常用命令(持续更新) 基础的命令 cd : 改变目录 cd . . 回退到上一个目录,直接cd进入默认目录 pwd : 显示当前所在的目录路径。 ls(ll): 都是列出当前目录中的所有文件,只不过ll(两个ll)列出的内容更为详细。 touch : 新建一个文件 如 touch ind 阅读全文
posted @ 2020-07-21 14:05 有梦可有为 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 使用ES查询来对应mysql的like查询 建立一个测试索引 PUT /test_like1 { "mappings" : { "properties" : { "num" : { "type" : "keyword" }, "name" : { "type" : "text", "fields" 阅读全文
posted @ 2020-07-21 10:06 有梦可有为 阅读(10642) 评论(0) 推荐(1) 编辑