页面维护
基础操作
- hexo new ‘ 文件名’
- hexo d -g
- hexo s
插入图片
1 | ![img](【数据结构】课程设计-MicroMouse迷宫遍历算法演示/4.png) |
超链接
1 | [课设演示视频地址 点击此处](https://www.bilibili.com/video/BV17Q4y137ms/?t=1&spm_id_from=333.1007.seo_video.first) |
Debug
解决git报错:ssh:connect to host github.com port 22: Connection timed out
- 在终端输入:
$ ssh -T git@github.com
- .ssh 文件下新建config文件写入内容
1
2
3
4
5
6
7 Host github.com
User git
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443
- 打开终端输入
$ ssh -T git@github.com
- 按照流程输入yes