deploy: type: git repo: <repository url> branch: [branch] message: [message] extend_dirs: [extend directory]详细点
时间: 2024-04-09 12:29:21 浏览: 143
repo to git
当你配置Hexo的部署设置时,你需要修改项目目录下的`_config.yml`文件。以下是详细的部署设置说明:
```yaml
deploy:
type: git
repo: <repository url>
branch: [branch]
message: [message]
extend_dirs: [extend directory]
```
- `type`:部署类型,这里设置为git。
- `repo`:你的Git仓库URL,用于指定部署到哪个仓库。
- `branch`:可选参数,用于指定要部署的Git仓库分支,默认为`master`。
- `message`:可选参数,用于指定每次部署的提交信息。
- `extend_dirs`:可选参数,用于指定需要额外部署的目录。
你需要将`<repository url>`替换为你要部署到的Git仓库的URL。如果需要,可以指定`[branch]`(默认为`master`)和提供一个`[message]`作为提交信息。
如果你还有其他需要与Hexo网站一起部署的目录,可以使用`[extend directory]`选项指定它们。
配置完部署设置后,你可以运行`hexo deploy`命令来将Hexo网站部署到指定的Git仓库上。
阅读全文