上一页 1 ··· 4 5 6 7 8
摘要: 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 林一怂儿 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 🀄🎲:需要使用启动管理员命令行 # 开启 Hyper-V service bcdedit /set hypervisorlaunchtype auto # 关闭 Hyper-V service bcdedit /set hypervisorlaunchtype off # 重启生效 # 立即重启 阅读全文
posted @ 2020-09-10 17:25 林一怂儿 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 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 林一怂儿 阅读(491) 评论(0) 推荐(0) 编辑
摘要: .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 林一怂儿 阅读(101) 评论(0) 推荐(0) 编辑
摘要: .gitignore 规则不生效? 只能忽略那些原来没有被track的文件,如果某些文件已经被纳入了版本管理中,则修改.gitignore是无效的 git rm -r --cached . git add . git commit -m 'update .gitignore' 怎样生成 SSH 公钥 阅读全文
posted @ 2020-08-07 08:58 林一怂儿 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 运行环境 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 林一怂儿 阅读(2091) 评论(0) 推荐(0) 编辑
摘要: 环境 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 林一怂儿 阅读(3772) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8