10
10
05
03
VScode中上传到Gitee或Github VScode中上传到Gitee或Github
先把Gitee或Gihub的仓库克隆到本地 在VScode中打开克隆过来的文件夹,先暂存后提交,最后同步更新即可 使用VSCode中报错信息:Git installation not found 解决方法 设置→输入命令“
2022-10-03
03
生成ssh公共秘钥 生成ssh公共秘钥
1 设置用户名和邮箱 右键选择Git Bash Here,在命令框中输入执行下面两条命令 git config --global user.name “yourname” git config --global user.email“y
2022-10-03
02
Git的使用 Git的使用
1 下载安装 这里介绍两种简单方法,一种是使用命令的方式,另一种是图形化的方式,这里推荐使用图形化方式上传。先下载安装 git 和 tortoise git,必须先安装 git 才能安装 tortoise git git 下载地址:http
2022-10-02
02
01
Hexo搭建个人博客 Hexo搭建个人博客
1 环境安装 下载安装:node.js 安装 hexo npm install -g hexo-cli 在一个空文件夹里初始化hexo hexo init 本地预览 hexo 使用以下命令,浏览器打开 http://localhost:40
2022-10-01