Git no passwd login
输入 1 git config --global credential.helper store 查看配置 1 git config --list 如果有下面的行,说明配置成功了 1 credential.helper=store 后面操作的时候只需要输入一次密码之后,就可以免密码操作了,在家目录下会有一个 “.git-credentials” 文件生成
输入 1 git config --global credential.helper store 查看配置 1 git config --list 如果有下面的行,说明配置成功了 1 credential.helper=store 后面操作的时候只需要输入一次密码之后,就可以免密码操作了,在家目录下会有一个 “.git-credentials” 文件生成
把图标放在 hexo\source\images 目录下,这个目录没有可以自己手动创建 修改 next主题配置文件,\next\themes\next_config.yml 文件 1 2 3 4 5 6 7 8 favicon: small: /images/favicon-16x16-next.png #medium: /images/favicon-32x32-next.png medium: /images/favicon.ico apple_touch_icon: /images/apple-touch-icon-next.png safari_pinned_tab: /images/logo.svg #android_manifest: /images/manifest.json #ms_browserconfig: /images/browserconfig.xml
“hexo s” 在本地运行预览的端口是 4000 1 podman run -it --name=hexoenv -p 4000:4000 -v /home/hcy/Gateway/hexo_blogs:/home/devenv/hexo/source hexoenv /bin/bash 只需要把 source 文件夹暴露出来给 host 就行了 为了多端同步,推送不用 “hexo d” , 而是手动将 public 下的内容推到 github.io 那里
首先打开终端(我的容器使用 Linux 主机下的 podman cli 终端操作) 允许容器访问 xhost,在终端里面输入 1 xhost + run 容器即可 1 podman run -it --net=host -e DISPLAY=$DISPLAY --name=devenv -v /home/hcy/Gateway/:/home/devenv/Gateway devenv /bin/bash 参数解释: 1 ... -it ... /bin/bash // 进入交互模式 1 ... --net=host ... // 允许访问 host 网络 1 ... -e DISPLAY=$DISPLAY ... // 使用 host 的显示 1 ... --name=devenv ... // 指定启动之后容器的名字 1 2 3 ... -v /home/hcy/Gateway/:/home/devenv/Gateway ... // 将 host 的 /home/hcy/Gateway/ 映射到 container 的 /home/devenv/Gateway 1 ... devenv ... // 镜像名字
先查看是否有中文语言环境 1 locale -a 安装语言环境(root权限)记得选 zh_CN-utf8 1 dpkg-reconfigure locales 安装中文字体 1 apt-get install *wqy*