会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
mingV
博客园
首页
新随笔
联系
管理
订阅
1
2
3
下一页
[置顶]
如何正确配置 .gitignore 以忽略特定文件夹下的文件(除指定子文件夹外)
摘要: 在使用 Git 进行版本控制时,.gitignore 文件是一个非常有用的工具,可以帮助我们忽略不需要跟踪的文件或文件夹。然而,有时我们需要忽略某个文件夹下的所有内容,但保留其中的某个子文件夹。本文将详细介绍如何实现这一需求,并解决修改 .gitignore 后如何生效的问题。 场景描述 假设我们的
阅读全文
posted @ 2025-02-13 15:14 mingV2020
阅读(1492)
评论(0)
推荐(6)
2022年7月27日
centos 安装Nginx
摘要: 1. 安装依赖 # 一键安装上面四个依赖 [root@dex ~]# yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel 2. 下载tar安装包 wget http://nginx.org/download/ngin
阅读全文
posted @ 2022-07-27 11:13 mingV2020
阅读(1249)
评论(0)
推荐(0)
2022年6月28日
yum常用命令
摘要: // 1 安装 yum install package // 安装指定的安装包package // 2 更新和升级 yum update // 全部更新 yum update package // 更新指定程序包package yum check-update // 检查可更新的程序 yum upg
阅读全文
posted @ 2022-06-28 08:30 mingV2020
阅读(44)
评论(0)
推荐(0)
2022年6月27日
Centos 7 安装Redis5 详细步骤 备忘录笔记
摘要: 通过wget下载tar包 wget http://download.redis.io/releases/redis-5.0.5.tar.gz 解压包 tar -zxvf redis-5.0.5.tar.gz 转移目录 sudo mv ./redis-5.0.5 /usr/local/redis/ c
阅读全文
posted @ 2022-06-27 17:56 mingV2020
阅读(462)
评论(0)
推荐(0)
2022年5月12日
flutter ios 深色模式下状态栏文字是白色的,白色背景下看不见
摘要: flutter ios 深色模式下状态栏文字是白色的,白色背景下看不见 theme: ThemeData( appBarTheme: const AppBarTheme( systemOverlayStyle: SystemUiOverlayStyle( statusBarBrightness: B
阅读全文
posted @ 2022-05-12 08:48 mingV2020
阅读(301)
评论(0)
推荐(0)
2022年3月31日
dart 数组去重
摘要: List list = ['1','2','3','3']; list = list.toSet().toList();
阅读全文
posted @ 2022-03-31 20:27 mingV2020
阅读(229)
评论(0)
推荐(0)
2021年12月9日
MAC M1芯片 使用CocoaPods报错 ffi
摘要: sudo arch -x86_64 gem install ffiarch -x86_64 pod install
阅读全文
posted @ 2021-12-09 20:52 mingV2020
阅读(373)
评论(0)
推荐(0)
2021年5月14日
git 常用操作
摘要: 删除本地tag: git tag -d v20190514 删除远程tag: git push origin :refs/tags/v20190514 创建本地tag git tag v0.0.1 推送本地tag git push --tags
阅读全文
posted @ 2021-05-14 09:14 mingV2020
阅读(61)
评论(0)
推荐(0)
2021年3月30日
vue v-for强制刷新
摘要: this.$forceUpdate()
阅读全文
posted @ 2021-03-30 16:26 mingV2020
阅读(869)
评论(0)
推荐(0)
2021年3月10日
flutter-TextField垂直居中
摘要: decoration: InputDecoration( contentPadding: EdgeInsets.symmetric(vertical: 0), // border: InputBorder.none, border: OutlineInputBorder(borderSide: Bo
阅读全文
posted @ 2021-03-10 15:35 mingV2020
阅读(1007)
评论(0)
推荐(0)
1
2
3
下一页
公告