forgejo/docs/content/development/integrations.zh-cn.md
John Olheiser 174ed3e356
Docusaurus-ify 1.19 (#26053)
See https://github.com/go-gitea/gitea/pull/26051

---------

Signed-off-by: jolheiser <john.olheiser@gmail.com>
Co-authored-by: Giteabot <teabot@gitea.io>
(cherry picked from commit 8c771c8b91)
2023-07-26 14:23:49 +02:00

1.2 KiB
Raw Blame History

date title slug sidebar_position toc draft aliases menu
2023-05-25T17:29:00+08:00 集成 integrations 65 false false
/zh-cn/integrations
sidebar
parent name sidebar_position identifier
development 集成 65 integrations

集成

Gitea拥有一个出色的第三方集成社区以及在其他各种项目中的一流支持。

我们正在awesome-gitea上整理一个列表来跟踪这些集成!

如果你正在寻找CI/CD 一个SDK 甚至一些额外的主题 你可以在awesome-gitea中找到它们的列表!

预填新文件名和内容

如果你想打开一个具有给定名称和内容的新文件, 你可以使用查询参数来实现:

GET /{{org}}/{{repo}}/_new/{{filepath}}
    ?filename={{filename}}
    &value={{content}}

例如:

GET https://git.example.com/johndoe/bliss/_new/articles/
    ?filename=hello-world.md
    &value=Hello%2C%20World!