摘要: 一、场景 本地基于某个分支进行开发,想创建一个新的分支提交到远端 二、操作方法 1、创建新分支 git checkout -b <new_branch_name> 2、修改文件加入版本管理 git add . 3、提交本地修改到暂存区 git commit -m "feat: add some fe 阅读全文
posted @ 2024-12-05 17:44 代码诠释的世界 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 一、场景 命令行操作redis, 万一没有界面化软件可用 二、文档 https://redis.io/docs/latest/develop/tools/cli/ 三、安装 sudo apt-get update sudo apt-get install redis-tools 四、命令介绍 $ r 阅读全文
posted @ 2024-12-05 17:29 代码诠释的世界 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 一、场景 在进行功能开发或者测试的时候,有时候会遇到查询较慢的问题 二、explain命令介绍 https://dev.mysql.com/doc/refman/8.4/en/explain.html 三、使用 字段介绍 id: 查询的序列号 select_type: 查询的类型 table: 查询 阅读全文
posted @ 2024-12-05 16:26 代码诠释的世界 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 一、场景 实际业务中,可能需要模拟磁盘满可能导致的一些异常场景,便于优化代码的处理机制,保证健壮性。 二、模拟方法 1、 dd dd if=/dev/zero of=rumenz.img bs=2G count=1 使用过、相对会慢一些 2、truncate truncate -s 2G rumen 阅读全文
posted @ 2024-12-05 16:05 代码诠释的世界 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 一、官网 https://yarn.bootcss.com/ 二、安装 npm install --global yarn 检查 yarn --version 三、配置环境变量 # yarn export YARN_GLOBAL=/home/tester/.yarn/yarn_global expo 阅读全文
posted @ 2024-12-05 15:52 代码诠释的世界 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 一、安装 npm install --global serve 二、运行 切换到dist目录 执行命令serve 阅读全文
posted @ 2024-12-05 15:32 代码诠释的世界 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 一、官网 https://nodejs.org/zh-cn 二、安装方法 1、下载安装包 2、解压安装包到指定目录 tar xf node-v14.21.0-linux-x64.tar.xz -C ~/tools/ && cd ~/tools 3、配置环境变量 # node export NODE_ 阅读全文
posted @ 2024-12-05 15:30 代码诠释的世界 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 一、命令介绍 $ pyenv --help Usage: pyenv <command> [<args>] Some useful pyenv commands are: activate Activate virtual environment commands List all availabl 阅读全文
posted @ 2024-12-05 14:57 代码诠释的世界 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 一、官网 https://github.com/pyenv/pyenv 二、作用 管理python版本和环境 三、安装 3.1、自动安装 1、一键安装 curl https://pyenv.run | bash 网要好,可能会下载失败 会下载四个插件 pyenv-doctor pyenv-updat 阅读全文
posted @ 2024-12-05 14:31 代码诠释的世界 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 一、背景 个人有些软件在23.10上安装有问题,所以更新下 二、更新方法 有事找官网 https://ubuntu.com/server/docs/how-to-upgrade-your-release 三、更新步骤 总体步骤如下: 开始之前非常重要的一步,备份资料,以防万一更新失败,资料丢失,备份 阅读全文
posted @ 2024-12-05 11:24 代码诠释的世界 阅读(82) 评论(0) 推荐(0) 编辑