使用ssh连接git服务
生成密钥ssh-keygen -t rsa -C "你的邮箱",然后一路回车,前往~/.ssh目录下查看密钥打开id_rsa.pub文件,复制下来,前往[https://github.com/settings/keys]点击New ssh key,填写你刚刚复制的公钥内容,完成 测试连接ssh进行测试 1ssh git@github.com 返回结果 123PTY allocation request failed on channel 0Hi lijiashuai111! You've successfully authenticated, but GitHub does not provide shell access.Connection to github.com closed. 完成,你现在可以使用ssh来进行克隆,拉取等操作了
部署hexo博客
Hexo 是一个快速、简洁且高效的博客框架。 Hexo 使用 Markdown(或其他标记语言)解析文章,在几秒内,即可利用靓丽的主题生成静态网页。 安装hexo可以参照官方文档安装. 一键部署脚本如果你实在看不懂安装文档,我这里写了一个一键安装脚本,用于安装npm和hexo(适用于Ubuntu系统),使用前请确保你的电脑上没有安装nodejs,使用node -v和npm -v来查看,如果提示bash: npm: command not found,即可使用这个脚本,成功运行后可以直接到~/blog目录下查看 1curl -O https://raw.githubusercontent.com/lijiashuai111/hexo-auto-install/main/hexo-auto-install.sh && sh hexo-auto-install.sh 配置文件Hexo的配置文件 _config.yml 包含了多个关键配置项,每个都具有特定的功能: title: 设置博客的标题。 subtitle: 设置博客的副标题。 description:...
🎉【教师节快乐】🎉
感谢老师们的辛勤付出(
使用docsify+GitHubPages搭建静态文档站
我建的站:赛博扫盲手册 安装docsify1234npm i docsify-cli -g # 安装docsifydocsify init ./docs # 初始化并创建./docs文件夹 安装成功了,可以看到对应目录下出现了这些文件: index.html 入口文件 README.md 会做为主页内容渲染 .nojekyll 用于阻止 GitHub Pages 忽略掉下划线开头的文件 现在就可以编辑README.md来修改主页内容了,你也可以使用docsify serve ./docs来在本机3000端口上启动一个实时更新的开发服务器来查看你的更改。 多页文档直接在docs目录下新建md文件,通过域名/文件名进行访问。 定制侧边栏在创建多页文档之后你会发现,只能手动输入地址去访问对应的文档,这时候就需要通过编辑侧边栏来实现,在index.html里找到window.$docsify = {在下面添加loadSidebar: true 1234567<!-- index.html --> <script> ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any probems when using Hexo you can find the answer in troubleshooting or you can ask me on GitHub. Quick StrtCreate a new pst1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment