会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
林一怂儿
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
4
5
6
7
8
2020年9月27日
UNC 路径不受支持问题
摘要: reg add "HKEY_CURRENT_USER\Software\Microsoft\Command Processor" /v "DisableUNCCheck" /t "REG_DWORD" /d "1" /f https://blog.csdn.net/zhizunbao84/artic
阅读全文
posted @ 2020-09-27 18:31 林一怂儿
阅读(268)
评论(0)
推荐(0)
2020年9月10日
Hyper-V 相关命令
摘要: 🀄🎲:需要使用启动管理员命令行 # 开启 Hyper-V service bcdedit /set hypervisorlaunchtype auto # 关闭 Hyper-V service bcdedit /set hypervisorlaunchtype off # 重启生效 # 立即重启
阅读全文
posted @ 2020-09-10 17:25 林一怂儿
阅读(441)
评论(0)
推荐(0)
2020年8月19日
H5 Ctrl+滚轮 禁止页面缩放
摘要: typescript let scrollFunc = (e: any) => { e = e || window.event; if (e.wheelDelta && e.ctrlKey) //IE/Opera/Chrome e.returnValue = false; else if (e.de
阅读全文
posted @ 2020-08-19 10:12 林一怂儿
阅读(510)
评论(0)
推荐(0)
2020年8月10日
CSS 文字溢出省略号
摘要: .toe { width: 200px; /* 默认宽度 */ display: -webkit-box; overflow: hidden; word-wrap: break-word; word-break:break-all; white-space: normal !important; t
阅读全文
posted @ 2020-08-10 09:15 林一怂儿
阅读(106)
评论(0)
推荐(0)
2020年8月7日
Git 常见问题
摘要: .gitignore 规则不生效? 只能忽略那些原来没有被track的文件,如果某些文件已经被纳入了版本管理中,则修改.gitignore是无效的 git rm -r --cached . git add . git commit -m 'update .gitignore' 怎样生成 SSH 公钥
阅读全文
posted @ 2020-08-07 08:58 林一怂儿
阅读(140)
评论(0)
推荐(0)
2020年7月23日
GitLab 定时备份
摘要: 运行环境 docker gitlab crontab rsync sshpass 文件层级关系 /home deployment backup.sh sync.sh restore.sh backup.sh # 创建备份 gitlab-rake gitlab:backup:create # 获取最新
阅读全文
posted @ 2020-07-23 18:01 林一怂儿
阅读(2121)
评论(0)
推荐(0)
2020年6月16日
前端项目部署到 Docker
摘要: 环境 docker docker-compose nodejs 第一种 使用本地的命令打包到dist文件夹下后,复制到nginx的容器中. default.conf nginx 的默认配置文件 server { listen 80; access_log /var/log/nginx/host.ac
阅读全文
posted @ 2020-06-16 11:30 林一怂儿
阅读(3827)
评论(0)
推荐(0)
上一页
1
···
4
5
6
7
8
公告