上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 46 下一页
摘要: 1. 使用cleanWs stage('Clean') { steps { cleanWs( cleanWhenAborted: true, cleanWhenFailure: true, cleanWhenNotBuilt: true, cleanWhenSuccess: true, cleanW 阅读全文
posted @ 2022-02-14 17:23 代码诠释的世界 阅读(2819) 评论(0) 推荐(0) 编辑
摘要: 1. 处理方法 sudo apt update sudo apt upgrade sudo apt dist-upgrade sudo apt autoremove sudo do-release-upgrade 2. 提示截图 阅读全文
posted @ 2022-02-14 16:07 代码诠释的世界 阅读(423) 评论(0) 推荐(0) 编辑
摘要: 1. 使用git merge方法合并master分支代码到自己分支 git checkout master # 切换本地分支为master git pull # 更新本地分支master代码为远程最新代码 git checkout [自己的分支名] # 切换到自己的分支 git merge mast 阅读全文
posted @ 2022-02-14 15:51 代码诠释的世界 阅读(13293) 评论(0) 推荐(0) 编辑
摘要: 1. 查询安装包版本 网站:https://packages.ubuntu.com/ 2. apt-cache madison <<package name>>查询 其他操作 apt-cache madison vimapt-cache policy vimapt-cache showpkg vim 阅读全文
posted @ 2022-02-14 15:26 代码诠释的世界 阅读(1273) 评论(0) 推荐(0) 编辑
摘要: 1. 查看nginx错误日志 connect() failed (111: Connection refused) while connecting to upstream connect() to unix:/run/php/php7.2-fpm.sock failed (2: No such f 阅读全文
posted @ 2022-02-14 15:03 代码诠释的世界 阅读(641) 评论(0) 推荐(0) 编辑
摘要: 1. 场景 升级18.04到20.04之后,服务起不来 2. 解决办法 重新安装php7.2-fpm 3.重启 sudo service php7.2-fpm restart 阅读全文
posted @ 2022-02-14 14:46 代码诠释的世界 阅读(721) 评论(0) 推荐(0) 编辑
摘要: 1. 重置方法 netsh winsock reset 2. 重启电脑, ###### 注意保存文件 shutdown -r -t 30 阅读全文
posted @ 2022-02-08 11:30 代码诠释的世界 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 1. 今天踩了一个大坑,IDE的文件都没commit,然后pull代码的时候,没注意,直接reset了 2. 处理方法 git fsck --lost-found 找到lost-found/other文件, 然后使用编辑器打开, 查看文件内容, 虽然文件不是自己最新的, 但是还是很有用的, 找回了一 阅读全文
posted @ 2022-01-28 20:25 代码诠释的世界 阅读(465) 评论(0) 推荐(0) 编辑
摘要: 1. 问题代码python self.browser.switch_to_window_handles(browser.window_handles[-1]) 2. 解决方法 self.browser.switch_to.window(browser.window_handles[-1]) 阅读全文
posted @ 2022-01-27 16:16 代码诠释的世界 阅读(1012) 评论(0) 推荐(0) 编辑
摘要: 1. 下载链接 # https://github.com/allure-framework/allure2/releases# allure文档:https://docs.qameta.io/allure/ 2. 安装 ubuntu sudo dpkg -i allure_2.17.2-1_all. 阅读全文
posted @ 2022-01-18 19:55 代码诠释的世界 阅读(418) 评论(0) 推荐(0) 编辑
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 46 下一页