抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >

重新启用 Windows 聚焦 打开【设置】->【个性化】->【锁屏】,在背景中切换到图片或幻灯片,然后重启电脑 回到锁屏设置,将背景 切换到 Windows 聚焦。 重新注册 Windows 聚焦服务如果上面的做法不起作用,再试试这个,在 Powershell 中重新注册 Windows 聚焦服务。 执行上面解决方案的第一步 以管理员身份启动 Powershell,执行以...

GitHub 仓库直接 fork 的话就是 public,但有时候想要设置为 private,有没有办法呢?办法当然是有的。 进入 GitHub,新建一个 private 仓库,例如:https://github.com/varm/awesome-me 克隆需要 fork 的“裸库”: 1git clone --bare https://github.com/other/public-r...

修改 .gitmodules 文件,将子模块的 URL 从 SSH 更改为 HTTPS 格式即可。 123456[submodule "MyRepo"] path = MyRepo# 修改之前: url = git@github.com:varm/MyRepo.git# 修改之后: url = https://github.com/varm/MyRepo...

仓库环境Hexo 源码存放在 GitHub 私有仓库:https://github.com/varm/source_hexo GitHub Page 仓库:https://github.com/varm/hexo CODING Page 仓库:https://e.coding.net/varm/hexo 以下简称 source_hexo 仓库、hexo 仓库和 CODING Page 仓库。...

之前有一篇文章介绍将 jsDelivr 当作免费的图床: jsDelivr免费图床https://blog.zerow.cn/resource/fa40c8bd.html 示例资源演示 GitHub 用户名:varm,在 GitHub 新建一个公共仓库:blog。 GitHub 资源 CDN 加速地址 假如 blog 仓库存在这个文件:blog/js/main.min.js,则加速地址:...

查看当前用户名和邮箱123$ git config user.name$ git config user.email 修改全局用户名和邮箱123$ git config --global user.name "username"$ git config --global user.email "email@example.com" 如果只是设置当前...

在当前 Git 目录执行 git 命令时出现错误提示❌: 1234fatal: unsafe repository ('/zerow/directory' is owned by someone else)To add an exception for this directory, call: git config --global --add safe....

hexo 博客的文章中有个“**更新时间**”(非发布时间),每次 Git 提交后这个“**更新时间**”都会变成 Git 提交时间,处理办法如下

本文介绍在使用typora的过程中遇到的一系列和picgo,gitee等相关的问题以及解决方法

需求:在 Typora markdown 编辑器中实现图片自动上传到云端图床服务。 Typora 版本:0.9.86+ 打开 Typora 的【偏好设置】->【图像】 “插入图片时”这里选择“上传图片”, “上传服务”这里选择 “PicGo-Core(command line)”,点击“下载或更新 ”后自动安装该插件 安装插件完成后选择“打开配置文件”,我这里选择配置【腾讯云 C...