上一页 1 2 3 4 5 6 ··· 39 下一页
摘要: 理论支持: https://gitbook.curiouser.top/origin/SonarQube%E9%9D%99%E6%80%81%E4%BB%A3%E7%A0%81%E6%89%AB%E6%8F%8F%E5%88%86%E6%9E%90%E7%AE%80%E4%BB%8B.html 部署 阅读全文
posted @ 2023-05-25 13:14 豆浆D 阅读(20) 评论(0) 推荐(0) 编辑
摘要: .gitignore 文件不在正确的位置:确保你的 .gitignore 文件位于项目的根目录下,并且命名为 .gitignore (注意文件名前面的点)。 文件已经被 Git 跟踪:如果某个文件已经被 Git 跟踪并且已经在之前的提交中被包含进版本控制,.gitignore 文件对该文件将不起作用 阅读全文
posted @ 2023-05-23 18:45 豆浆D 阅读(732) 评论(0) 推荐(0) 编辑
摘要: 最近公司老的jenkins平台要安装git插件,然后噩梦就开始了 由于是不支持访问内网,安装一个git插件就需要离线安装, 遇到依赖,就要另外再离线下载依赖, 有时候依赖也需要依赖,再继续下 一个git插件,本来安装一个,生生下载了十几个依赖 更郁闷的是,由于jenkins版本较老,你也不知道下载插 阅读全文
posted @ 2023-05-18 17:30 豆浆D 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 首先可以确定,playwright在centos上部署官方是不支持的,github上可以看到 https://github.com/microsoft/playwright/issues/9194 走过很多坑,总结了下面一套部署方案: 一、首先安装比较低的版本 # 安装playwright pip 阅读全文
posted @ 2023-05-18 17:23 豆浆D 阅读(2102) 评论(0) 推荐(0) 编辑
摘要: https://cloud.tencent.com/developer/article/1493050 阅读全文
posted @ 2023-05-17 13:31 豆浆D 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 分阻塞式和非阻塞式 from apscheduler.schedulers.background import BackgroundScheduler # 非阻塞 from apscheduler.schedulers.blocking import BlockingScheduler # 阻塞 f 阅读全文
posted @ 2023-04-26 16:28 豆浆D 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 移除旧版本 sudo yum remove git sudo yum remove git-* 添加 End Point Package Repository 在 CentOS 7 上安装新版本 Git 最快的方法是通过 End Point 库。 sudo yum install https://p 阅读全文
posted @ 2023-02-08 14:30 豆浆D 阅读(398) 评论(0) 推荐(0) 编辑
摘要: 添加CentOS 7 Nginx yum资源库,打开终端,使用以下命令: sudo rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm 安装Nginx 阅读全文
posted @ 2023-02-07 14:02 豆浆D 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 安装 yum install git -y 验证 [root@localhost ~]# git --version git version 1.8.3.1 [root@localhost ~]# 配置基本信息 //配置基本信息 [root@localhost ~]# git config --gl 阅读全文
posted @ 2023-02-07 10:49 豆浆D 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 简易的命令行入门教程: Git 全局设置: git config --global user.name "soymilk" git config --global user.email "soymilkll@163.com" 创建 git 仓库: mkdir hellogit cd hellogit 阅读全文
posted @ 2023-02-03 13:20 豆浆D 阅读(6) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 39 下一页