## nginx的日志```SHELL #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_u ...
分类:
系统相关 时间:
2021-05-24 04:12:29
阅读次数:
0
import scala.util.parsing.json.JSON._import scala.io.Source val js_file="pspldata.area%s_tableMapping.json".format(1)val js_source = Source.fromFile(j ...
分类:
Web程序 时间:
2021-05-24 04:09:53
阅读次数:
0
1. 配置 配置全局的用户名:git config --global user.name "zhangyang0514" 配置全局的邮箱 :git config --global use.email "18109230755@163.com" 查看当前配置 :git config --list 如下 ...
分类:
其他好文 时间:
2021-05-24 03:25:28
阅读次数:
0
第一步:查看提交历史,查看想要回退版本的版本号 git log src/app.vue 第二步:回滚某个文件到指定版本 git checkout 版本号 src/app.vue 第三步:提交到本地仓库-拉取合并代码-提交到远程 git commit -m '提交描述' git pull git pu ...
分类:
其他好文 时间:
2021-05-24 02:15:14
阅读次数:
0
1、Ansible简介 定义:Ansible是一个开源部署工具 Ansible与Chef,Saltstack的不同: Chef Ruby语言编写,C/S架构,配置需要Git依赖,Recipe脚本编写规范,需要编程经验 Saltstack Python语言编写,C/S架构,模块化配置管理,YAML脚本 ...
分类:
其他好文 时间:
2021-05-24 02:10:44
阅读次数:
0
什么是Git? Git是目前世界上最先进的分布式版本控制系统(没有之一)。 Git 与 SVN 区别? **Git 是分布式的,SVN 不是。**这是 Git 和其它非分布式的版本控制系统,例如 SVN,CVS 等,最核心的区别。 **Git 把内容按元数据方式存储,而 SVN 是按文件。**所有的 ...
分类:
其他好文 时间:
2021-05-24 02:08:12
阅读次数:
0
前 如果你想在Spring Cloud Gateway中使用Sentinel Starter,你需要添加Spring - Cloud -alibaba- Sentinel - Gateway依赖,并添加Spring - Cloud - Starter - Gateway依赖,让Spring Clou ...
分类:
其他好文 时间:
2021-05-24 01:48:53
阅读次数:
0
docker inspect --format='{{.Name}} - {{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(docker ps -q) ...
分类:
其他好文 时间:
2021-05-24 01:36:40
阅读次数:
0
PS C:\ycm\test\ts-newProjet> git pull origin master * branch master -> FETCH_HEAD fatal: refusing to merge unrelated histories 在新建项目时报refusing to merg ...
分类:
其他好文 时间:
2021-05-24 01:24:52
阅读次数:
0
参考博客: https://www.cnblogs.com/tugenhua0707/p/3776808.html 代码: Date.prototype.format = function(fmt) { var o = { "M+" : this.getMonth()+1, //月份 "d+" : ...
分类:
Web程序 时间:
2021-05-24 00:40:16
阅读次数:
0