摘要:
IDEA代码撤回办法如下 例如test123是错误代码,我们需要回撤到test12 右键点击test12(选择要回退的版本),选择Reset Current Branch to Here... 有以下四种方式回撤代码,这里我们选择Hard (1)soft 文件不会更改,差异将暂存提交 (2)Mixe 阅读全文
摘要:
基础命令 查看索引列表 GET /_cat/indices?v=true&pretty 查看分片情况 GET /_cat/shards?v=true&pretty 创建索引(Create Index) PUT /<index_name> { "settings": { "number_of_shar 阅读全文
摘要:
创建2个项目 springboot-cloud-config(作配置中心) springboot-cloud-client(客户端) springboot-cloud-config(工程) 注意:2个项目springboot版本:2.4.0 添加依赖 <dependency> <groupId>or 阅读全文
摘要:
下载 下载地址:https://www.charlesproxy.com/latest-release/download.do 激活 激活地址:https://www.zzzmode.com/mytools/charles/ 激活 help-》Register Charles 阅读全文
摘要:
本地生成ssh公私秘钥 ssh-keygen 将本地公钥上传至服务器、 本地公钥地址:C:\Users\xxxxx\.ssh\id_rsa.pub 先上传至服务器根目录:/home 创建文件夹:cd /home && mkdir .ssh 拷贝文件到.ssh:cp /home/id_rsa.pub 阅读全文