vuepress博客如何维护
2023/4/26 博客维护
1、博客地址:https://github.com/1623354901/lyThemeBlog
2、博客发表地址:
# 一、新电脑如何将博客部署到新电脑
# git clone git@github.com:1623354901/lyThemeBlog.git 报错,显示
重点报错:**Please make sure you have the correct access rights and the repository exists.**
百度后发现:是 ssh key 有问题,导致的连接不上服务器。
# 解决办法:
1、设置用户名邮箱
git config --global user.name "yourname"
git config --global user.email“your@email.com"
// git config --global user.name "1623354901"
// git config --global user.email "1623354901@qq.com"
1
2
3
4
2
3
4
2、删除.ssh 文件夹(直接搜索该文件夹,一般在 C 盘的 Users 文件夹下)下的 known_hosts(手动删除即可,不需要 git)(若没有则跳过)
3、输入命令
ssh-keygen -t rsa -C "your@email.com"
// ssh-keygen -t rsa -C "1623354901@qq.com"
1
2
2
三次回车后:找.ssh 文件夹。 系统会自动在.ssh 文件夹下生成两个文件,id_rsa 和 id_rsa.pub,用记事本打开 id_rsa.pub。将全部的内容复制
然后到 github-setting-SSH and GPG keys 中新建 SSH keys 并将内容粘贴进去
4、在 git bash 中输入命令:
ssh -T git@github.com
1
然后输入 yes 就 ok 了
5、再 git clone 就成功了
# 二、克隆后如何才做
// 安装依赖:
npm i
// 启动命令:
npm run dev
1
2
3
4
2
3
4