黑马程序员 Git 教程笔记
Git 工作流程Git 常用命令Git 代码托管服务IDEA 中操作 Git
Git 工作流程图
clone (克隆): 从远程仓库中克隆代码到本地仓库;
checkout (检出): 从本地仓库中检出一个仓库分支然后进行修订;
add (添加): 在提交前先将代码提交到暂存区;
commit (提交): 提交到本地仓库,本地仓库中保存修改的各个历史版本;
fetch (抓取): 从远程仓库,抓取到本地仓库,不进行任何的合并动作,一般操作比较少;
pull (拉取): 从远程仓库拉到本地仓库,自动进行合并(merge),然后放到工作区,相当于 fetch + merge;
push (推送): 修改完成后,需要和团队成员共享代码时,将代码推送到远程仓库;
设置用户信息git config --global user.name "user_name"git config --global user.email "xxxx@123.com"
查看配置信息git config --global user.namegit config --globa ...
GitHub Hexo 搭建个人博客页面
操作系统:Windows 11测试日期:2024年4月1日
Hexo安装首先需要安装
Node.js
Git
npm install -g hexo-cli
判断安装是否成功 hexo -v
创建一个新文件夹用于存放站点相关配置文件,进入文件夹目录
12hexo initnpm install
hexo 生成与本地服务启动
12hexo ghexo s
hexo 个人博客部署
123456789hexo doutput:INFO Validating configERROR Deployer not found: gitnpm install hexo-deployer-git --savehexo d
ReferenceHexo DocNode.jsGithub + Hexo 搭建个人博客教程解决 hexo d 命令错误提示 Deployer not found: gitHexo butterfly 主题美化Hexo butterfly 美化
Hexo 常用命令12345678910111213141516171819npm install hexo ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ 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