GitHub端口22连接超时改用443端口连接
Jan 01, 2025
clone github仓库时老是提示22端口超时,如下: $ git clone git@github.com:xtod/yuwang.git Cloning into 'yuwang'... ssh: connect to host github.com port 22: Connection timed out fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. 还提示是否对该仓库具有访问权或者仓库是否存在,这不废话么,我肯定确认。 …
将Hugo站点部署到Cloudflare Pages
Mar 14, 2021
建立Hugo站点 参考使用hugo建立静态个人网站,将新建的站点push到github上。 设置Cloudflare Pages 登录https://dash.cloudflare.com/,打开Cloudflare Pages,点击Get started开始设置。 …
使用hugo建立静态个人网站
Mar 13, 2021
安装Hugo Hugo程序可以从这里下载 Windows建议下载hugo_extended_0.81.0_Windows-64bit.zip,其他系统可下载对应版本。 …
国内安装ohmyzsh的方法
Nov 01, 2020
REMOTE=https://gitee.com/mirrors/oh-my-zsh.git sh install.sh 首先安装zsh apt update&&apt ugprade -y apt install zsh -y 如果能够正常访问github.com和githubusercontent.com,那么使用如下命令即可安装ohmyzsh …
Github Actions自动生成Hugo站点并部署到Github Pages
Oct 25, 2020
使用hugo建立建立个人网站可以参考使用hugo建立静态个人网站 使用github pages来部署个人网站可以参考GithubPages部署免费网站 下面将会介绍如何通过Github Actions来将以上两个操作关联在一起并自动化完成! …
将博客从Typecho转移至Gor
Jul 20, 2015
缘由 VPS快到期了,不想继续维护,太累,并且香港VPS价格也不菲。 于是打算选择一个静态博客平台,原来用过的不少:jekyll,hexo,gor,pelican,最后决定Gor …
stuffGoogleGitgorGithubVPSMySQLMarkdowngolangBlogtypechophpsqlnotepad++
结合Jekyll与Github Page建立免费博客
Jul 16, 2014
安装Jekyll Windows下安装Jekyll Debian下安装Jekyll Jekyll使用 待补充 将Jekyll内容发布到Github 首先登录Github,新建一个用户名.github.io的repositories 然后将该 Repositories clone到本地文件夹。 在本地文件夹生成Jekyll站点,然后使用jekyll server生成内容。 …
使用SSH密匙登录Github
Sep 03, 2013
相较于旧的RSA,更加推荐ED25519 $ ssh-keygen -t ed25519 -C "your_email@example.com" 生成ssh密匙文件 ssh-keygen -t rsa -C "user@domain.com" 接下来会提示输入密码,推荐自定义密码,当然也可以置空 Enter passphrase(empty for no passphrase): Enter same passphrase again: 完成后会在用户目录下的.ssh文件夹中新建id_rsa与is_rsa.pub两个文件。 …