Git 文件太大无法上传
git push 推送代码时提示 fatal: the remote end hung up unexpectedly 在项目目录 .git/config 中添加一下代码 [http] postBuffer = 524288000
git push 推送代码时提示 fatal: the remote end hung up unexpectedly 在项目目录 .git/config 中添加一下代码 [http] postBuffer = 524288000
原始 curl 请求结果 安装 jq yum install jq 将 curl 返回结果通过管道发送给 jq curl 'http://localhost:8001/system/clear/help_info?id=1' | jq 过 jq 格式化 curl 请求结果
快捷键 电源键 adb shell input keyevent 26 返回键 adb shell input keyevent 4 HOME键 adb shell input keyevent 3 实用命令 查看手机版本号 adb shell getprop|grep release 查看运行的软件包名 1. 先执行 2. adb shell am monitor, 3. 然后打开想要查看宝软件, 观察终端输入的包名 删除系统自带应用 adb shell pm uninstall -k --user 0 包名
清理 docker 容器产生的日志 cd /var/lib/docker/containers cat /dev/null > 容器ID-json.log 下载其他系统镜像 docker pull --platform linux/amd64 镜像名称 制作一个 linux 最小化 docker image 1. Dockerfile FROM alpine:latest # 设置阿里云镜像 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories # 安装插件 RUN apk add --no-cache tzdata RUN apk add --no-cache curl RUN apk add --no-cache busybox-extras # telnet 包 # 配置系统时区 RUN ln -snf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo Asia/Shanghai > /etc/timezone 2. 执行命令 docker build -t yhc-go:2024-10-20 -f ./Dockerfile . 3. ps: yhc-go 镜像名称, 可以随意修改 2024-10-20 镜像版本号, 可以随意修改
nginx 中添加 location / { try_files $uri $uri/ /index.html; } nginx 允许 header 携带下划线 在 nginx.conf 中 http 内添加 underscores_in_headers on;