mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	docs: add Chinese translations for README files (#34132)
- Update README.md to include links to Traditional and Simplified Chinese translations. - Add README.zh-cn.md file containing the Simplified Chinese version of the README. - Add README.zh-tw.md file containing the Traditional Chinese version of the README. - Delete README_ZH.md file. --------- Signed-off-by: appleboy <appleboy.tw@gmail.com>
This commit is contained in:
		| @@ -11,7 +11,7 @@ | |||||||
| [](https://gitpod.io/#https://github.com/go-gitea/gitea) | [](https://gitpod.io/#https://github.com/go-gitea/gitea) | ||||||
| [](https://translate.gitea.com "Crowdin") | [](https://translate.gitea.com "Crowdin") | ||||||
|  |  | ||||||
| [View this document in Chinese](./README_ZH.md) | [繁體中文](./README.zh-tw.md) | [简体中文](./README.zh-cn.md) | ||||||
|  |  | ||||||
| ## Purpose | ## Purpose | ||||||
|  |  | ||||||
|   | |||||||
							
								
								
									
										206
									
								
								README.zh-cn.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										206
									
								
								README.zh-cn.md
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,206 @@ | |||||||
|  | # Gitea | ||||||
|  |  | ||||||
|  | [](https://github.com/go-gitea/gitea/actions/workflows/release-nightly.yml?query=branch%3Amain "Release Nightly") | ||||||
|  | [](https://discord.gg/Gitea "Join the Discord chat at https://discord.gg/Gitea") | ||||||
|  | [](https://goreportcard.com/report/code.gitea.io/gitea "Go Report Card") | ||||||
|  | [](https://pkg.go.dev/code.gitea.io/gitea "GoDoc") | ||||||
|  | [](https://github.com/go-gitea/gitea/releases/latest "GitHub release") | ||||||
|  | [](https://www.codetriage.com/go-gitea/gitea "Help Contribute to Open Source") | ||||||
|  | [](https://opencollective.com/gitea "Become a backer/sponsor of gitea") | ||||||
|  | [](https://opensource.org/licenses/MIT "License: MIT") | ||||||
|  | [](https://gitpod.io/#https://github.com/go-gitea/gitea) | ||||||
|  | [](https://translate.gitea.com "Crowdin") | ||||||
|  |  | ||||||
|  | [English](./README.md) | [繁體中文](./README.zh-tw.md) | ||||||
|  |  | ||||||
|  | ## 目的 | ||||||
|  |  | ||||||
|  | 这个项目的目标是提供最简单、最快速、最无痛的方式来设置自托管的 Git 服务。 | ||||||
|  |  | ||||||
|  | 由于 Gitea 是用 Go 语言编写的,它可以在 Go 支持的所有平台和架构上运行,包括 Linux、macOS 和 Windows 的 x86、amd64、ARM 和 PowerPC 架构。这个项目自 2016 年 11 月从 [Gogs](https://gogs.io) [分叉](https://blog.gitea.com/welcome-to-gitea/) 而来,但已经有了很多变化。 | ||||||
|  |  | ||||||
|  | 在线演示可以访问 [demo.gitea.com](https://demo.gitea.com)。 | ||||||
|  |  | ||||||
|  | 要访问免费的 Gitea 服务(有一定数量的仓库限制),可以访问 [gitea.com](https://gitea.com/user/login)。 | ||||||
|  |  | ||||||
|  | 要快速部署您自己的专用 Gitea 实例,可以在 [cloud.gitea.com](https://cloud.gitea.com) 开始免费试用。 | ||||||
|  |  | ||||||
|  | ## 文件 | ||||||
|  |  | ||||||
|  | 您可以在我们的官方 [文件网站](https://docs.gitea.com/) 上找到全面的文件。 | ||||||
|  |  | ||||||
|  | 它包括安装、管理、使用、开发、贡献指南等,帮助您快速入门并有效地探索所有功能。 | ||||||
|  |  | ||||||
|  | 如果您有任何建议或想要贡献,可以访问 [文件仓库](https://gitea.com/gitea/docs) | ||||||
|  |  | ||||||
|  | ## 构建 | ||||||
|  |  | ||||||
|  | 从源代码树的根目录运行: | ||||||
|  |  | ||||||
|  |     TAGS="bindata" make build | ||||||
|  |  | ||||||
|  | 如果需要 SQLite 支持: | ||||||
|  |  | ||||||
|  |     TAGS="bindata sqlite sqlite_unlock_notify" make build | ||||||
|  |  | ||||||
|  | `build` 目标分为两个子目标: | ||||||
|  |  | ||||||
|  | - `make backend` 需要 [Go Stable](https://go.dev/dl/),所需版本在 [go.mod](/go.mod) 中定义。 | ||||||
|  | - `make frontend` 需要 [Node.js LTS](https://nodejs.org/en/download/) 或更高版本。 | ||||||
|  |  | ||||||
|  | 需要互联网连接来下载 go 和 npm 模块。从包含预构建前端文件的官方源代码压缩包构建时,不会触发 `frontend` 目标,因此可以在没有 Node.js 的情况下构建。 | ||||||
|  |  | ||||||
|  | 更多信息:https://docs.gitea.com/installation/install-from-source | ||||||
|  |  | ||||||
|  | ## 使用 | ||||||
|  |  | ||||||
|  | 构建后,默认情况下会在源代码树的根目录生成一个名为 `gitea` 的二进制文件。要运行它,请使用: | ||||||
|  |  | ||||||
|  |     ./gitea web | ||||||
|  |  | ||||||
|  | > [!注意] | ||||||
|  | > 如果您对使用我们的 API 感兴趣,我们提供了实验性支持,并附有 [文件](https://docs.gitea.com/api)。 | ||||||
|  |  | ||||||
|  | ## 贡献 | ||||||
|  |  | ||||||
|  | 预期的工作流程是:Fork -> Patch -> Push -> Pull Request | ||||||
|  |  | ||||||
|  | > [!注意] | ||||||
|  | > | ||||||
|  | > 1. **在开始进行 Pull Request 之前,您必须阅读 [贡献者指南](CONTRIBUTING.md)。** | ||||||
|  | > 2. 如果您在项目中发现了漏洞,请私下写信给 **security@gitea.io**。谢谢! | ||||||
|  |  | ||||||
|  | ## 翻译 | ||||||
|  |  | ||||||
|  | [](https://translate.gitea.com) | ||||||
|  |  | ||||||
|  | 翻译通过 [Crowdin](https://translate.gitea.com) 进行。如果您想翻译成新的语言,请在 Crowdin 项目中请求管理员添加新语言。 | ||||||
|  |  | ||||||
|  | 您也可以创建一个 issue 来添加语言,或者在 discord 的 #translation 频道上询问。如果您需要上下文或发现一些翻译问题,可以在字符串上留言或在 Discord 上询问。对于一般的翻译问题,文档中有一个部分。目前有点空,但我们希望随着问题的出现而填充它。 | ||||||
|  |  | ||||||
|  | 更多信息请参阅 [文件](https://docs.gitea.com/contributing/localization)。 | ||||||
|  |  | ||||||
|  | ## 官方和第三方项目 | ||||||
|  |  | ||||||
|  | 我们提供了一个官方的 [go-sdk](https://gitea.com/gitea/go-sdk),一个名为 [tea](https://gitea.com/gitea/tea) 的 CLI 工具和一个 Gitea Action 的 [action runner](https://gitea.com/gitea/act_runner)。 | ||||||
|  |  | ||||||
|  | 我们在 [gitea/awesome-gitea](https://gitea.com/gitea/awesome-gitea) 维护了一个 Gitea 相关项目的列表,您可以在那里发现更多的第三方项目,包括 SDK、插件、主题等。 | ||||||
|  |  | ||||||
|  | ## 通讯 | ||||||
|  |  | ||||||
|  | [](https://discord.gg/Gitea "Join the Discord chat at https://discord.gg/Gitea") | ||||||
|  |  | ||||||
|  | 如果您有任何文件未涵盖的问题,可以在我们的 [Discord 服务器](https://discord.gg/Gitea) 上与我们联系,或者在 [discourse 论坛](https://forum.gitea.com/) 上创建帖子。 | ||||||
|  |  | ||||||
|  | ## 作者 | ||||||
|  |  | ||||||
|  | - [维护者](https://github.com/orgs/go-gitea/people) | ||||||
|  | - [贡献者](https://github.com/go-gitea/gitea/graphs/contributors) | ||||||
|  | - [翻译者](options/locale/TRANSLATORS) | ||||||
|  |  | ||||||
|  | ## 支持者 | ||||||
|  |  | ||||||
|  | 感谢所有支持者! 🙏 [[成为支持者](https://opencollective.com/gitea#backer)] | ||||||
|  |  | ||||||
|  | <a href="https://opencollective.com/gitea#backers" target="_blank"><img src="https://opencollective.com/gitea/backers.svg?width=890"></a> | ||||||
|  |  | ||||||
|  | ## 赞助商 | ||||||
|  |  | ||||||
|  | 通过成为赞助商来支持这个项目。您的标志将显示在这里,并带有链接到您的网站。 [[成为赞助商](https://opencollective.com/gitea#sponsor)] | ||||||
|  |  | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/0/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/0/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/1/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/1/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/2/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/2/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/3/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/3/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/4/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/4/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/5/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/5/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/6/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/6/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/7/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/7/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/8/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/8/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/9/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/9/avatar.svg"></a> | ||||||
|  |  | ||||||
|  | ## 常见问题 | ||||||
|  |  | ||||||
|  | **Gitea 怎么发音?** | ||||||
|  |  | ||||||
|  | Gitea 的发音是 [/ɡɪ’ti:/](https://youtu.be/EM71-2uDAoY),就像 "gi-tea" 一样,g 是硬音。 | ||||||
|  |  | ||||||
|  | **为什么这个项目没有托管在 Gitea 实例上?** | ||||||
|  |  | ||||||
|  | 我们正在 [努力](https://github.com/go-gitea/gitea/issues/1029)。 | ||||||
|  |  | ||||||
|  | **在哪里可以找到安全补丁?** | ||||||
|  |  | ||||||
|  | 在 [发布日志](https://github.com/go-gitea/gitea/releases) 或 [变更日志](https://github.com/go-gitea/gitea/blob/main/CHANGELOG.md) 中,搜索关键词 `SECURITY` 以找到安全补丁。 | ||||||
|  |  | ||||||
|  | ## 许可证 | ||||||
|  |  | ||||||
|  | 这个项目是根据 MIT 许可证授权的。 | ||||||
|  | 请参阅 [LICENSE](https://github.com/go-gitea/gitea/blob/main/LICENSE) 文件以获取完整的许可证文本。 | ||||||
|  |  | ||||||
|  | ## 进一步信息 | ||||||
|  |  | ||||||
|  | <details> | ||||||
|  | <summary>寻找界面概述?查看这里!</summary> | ||||||
|  |  | ||||||
|  | ### 登录/注册页面 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ### 用户仪表板 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ### 用户资料 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ### 探索 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ### 仓库 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #### 仓库问题 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #### 仓库拉取请求 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #### 仓库操作 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #### 仓库活动 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ### 组织 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | </details> | ||||||
							
								
								
									
										206
									
								
								README.zh-tw.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										206
									
								
								README.zh-tw.md
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,206 @@ | |||||||
|  | # Gitea | ||||||
|  |  | ||||||
|  | [](https://github.com/go-gitea/gitea/actions/workflows/release-nightly.yml?query=branch%3Amain "Release Nightly") | ||||||
|  | [](https://discord.gg/Gitea "Join the Discord chat at https://discord.gg/Gitea") | ||||||
|  | [](https://goreportcard.com/report/code.gitea.io/gitea "Go Report Card") | ||||||
|  | [](https://pkg.go.dev/code.gitea.io/gitea "GoDoc") | ||||||
|  | [](https://github.com/go-gitea/gitea/releases/latest "GitHub release") | ||||||
|  | [](https://www.codetriage.com/go-gitea/gitea "Help Contribute to Open Source") | ||||||
|  | [](https://opencollective.com/gitea "Become a backer/sponsor of gitea") | ||||||
|  | [](https://opensource.org/licenses/MIT "License: MIT") | ||||||
|  | [](https://gitpod.io/#https://github.com/go-gitea/gitea) | ||||||
|  | [](https://translate.gitea.com "Crowdin") | ||||||
|  |  | ||||||
|  | [English](./README.md) | [简体中文](./README.zh-cn.md) | ||||||
|  |  | ||||||
|  | ## 目的 | ||||||
|  |  | ||||||
|  | 這個項目的目標是提供最簡單、最快速、最無痛的方式來設置自託管的 Git 服務。 | ||||||
|  |  | ||||||
|  | 由於 Gitea 是用 Go 語言編寫的,它可以在 Go 支援的所有平台和架構上運行,包括 Linux、macOS 和 Windows 的 x86、amd64、ARM 和 PowerPC 架構。這個項目自 2016 年 11 月從 [Gogs](https://gogs.io) [分叉](https://blog.gitea.com/welcome-to-gitea/) 而來,但已經有了很多變化。 | ||||||
|  |  | ||||||
|  | 在線演示可以訪問 [demo.gitea.com](https://demo.gitea.com)。 | ||||||
|  |  | ||||||
|  | 要訪問免費的 Gitea 服務(有一定數量的倉庫限制),可以訪問 [gitea.com](https://gitea.com/user/login)。 | ||||||
|  |  | ||||||
|  | 要快速部署您自己的專用 Gitea 實例,可以在 [cloud.gitea.com](https://cloud.gitea.com) 開始免費試用。 | ||||||
|  |  | ||||||
|  | ## 文件 | ||||||
|  |  | ||||||
|  | 您可以在我們的官方 [文件網站](https://docs.gitea.com/) 上找到全面的文件。 | ||||||
|  |  | ||||||
|  | 它包括安裝、管理、使用、開發、貢獻指南等,幫助您快速入門並有效地探索所有功能。 | ||||||
|  |  | ||||||
|  | 如果您有任何建議或想要貢獻,可以訪問 [文件倉庫](https://gitea.com/gitea/docs) | ||||||
|  |  | ||||||
|  | ## 構建 | ||||||
|  |  | ||||||
|  | 從源代碼樹的根目錄運行: | ||||||
|  |  | ||||||
|  |     TAGS="bindata" make build | ||||||
|  |  | ||||||
|  | 如果需要 SQLite 支援: | ||||||
|  |  | ||||||
|  |     TAGS="bindata sqlite sqlite_unlock_notify" make build | ||||||
|  |  | ||||||
|  | `build` 目標分為兩個子目標: | ||||||
|  |  | ||||||
|  | - `make backend` 需要 [Go Stable](https://go.dev/dl/),所需版本在 [go.mod](/go.mod) 中定義。 | ||||||
|  | - `make frontend` 需要 [Node.js LTS](https://nodejs.org/en/download/) 或更高版本。 | ||||||
|  |  | ||||||
|  | 需要互聯網連接來下載 go 和 npm 模塊。從包含預構建前端文件的官方源代碼壓縮包構建時,不會觸發 `frontend` 目標,因此可以在沒有 Node.js 的情況下構建。 | ||||||
|  |  | ||||||
|  | 更多信息:https://docs.gitea.com/installation/install-from-source | ||||||
|  |  | ||||||
|  | ## 使用 | ||||||
|  |  | ||||||
|  | 構建後,默認情況下會在源代碼樹的根目錄生成一個名為 `gitea` 的二進制文件。要運行它,請使用: | ||||||
|  |  | ||||||
|  |     ./gitea web | ||||||
|  |  | ||||||
|  | > [!注意] | ||||||
|  | > 如果您對使用我們的 API 感興趣,我們提供了實驗性支援,並附有 [文件](https://docs.gitea.com/api)。 | ||||||
|  |  | ||||||
|  | ## 貢獻 | ||||||
|  |  | ||||||
|  | 預期的工作流程是:Fork -> Patch -> Push -> Pull Request | ||||||
|  |  | ||||||
|  | > [!注意] | ||||||
|  | > | ||||||
|  | > 1. **在開始進行 Pull Request 之前,您必須閱讀 [貢獻者指南](CONTRIBUTING.md)。** | ||||||
|  | > 2. 如果您在項目中發現了漏洞,請私下寫信給 **security@gitea.io**。謝謝! | ||||||
|  |  | ||||||
|  | ## 翻譯 | ||||||
|  |  | ||||||
|  | [](https://translate.gitea.com) | ||||||
|  |  | ||||||
|  | 翻譯通過 [Crowdin](https://translate.gitea.com) 進行。如果您想翻譯成新的語言,請在 Crowdin 項目中請求管理員添加新語言。 | ||||||
|  |  | ||||||
|  | 您也可以創建一個 issue 來添加語言,或者在 discord 的 #translation 頻道上詢問。如果您需要上下文或發現一些翻譯問題,可以在字符串上留言或在 Discord 上詢問。對於一般的翻譯問題,文檔中有一個部分。目前有點空,但我們希望隨著問題的出現而填充它。 | ||||||
|  |  | ||||||
|  | 更多信息請參閱 [文件](https://docs.gitea.com/contributing/localization)。 | ||||||
|  |  | ||||||
|  | ## 官方和第三方項目 | ||||||
|  |  | ||||||
|  | 我們提供了一個官方的 [go-sdk](https://gitea.com/gitea/go-sdk),一個名為 [tea](https://gitea.com/gitea/tea) 的 CLI 工具和一個 Gitea Action 的 [action runner](https://gitea.com/gitea/act_runner)。 | ||||||
|  |  | ||||||
|  | 我們在 [gitea/awesome-gitea](https://gitea.com/gitea/awesome-gitea) 維護了一個 Gitea 相關項目的列表,您可以在那裡發現更多的第三方項目,包括 SDK、插件、主題等。 | ||||||
|  |  | ||||||
|  | ## 通訊 | ||||||
|  |  | ||||||
|  | [](https://discord.gg/Gitea "Join the Discord chat at https://discord.gg/Gitea") | ||||||
|  |  | ||||||
|  | 如果您有任何文件未涵蓋的問題,可以在我們的 [Discord 服務器](https://discord.gg/Gitea) 上與我們聯繫,或者在 [discourse 論壇](https://forum.gitea.com/) 上創建帖子。 | ||||||
|  |  | ||||||
|  | ## 作者 | ||||||
|  |  | ||||||
|  | - [維護者](https://github.com/orgs/go-gitea/people) | ||||||
|  | - [貢獻者](https://github.com/go-gitea/gitea/graphs/contributors) | ||||||
|  | - [翻譯者](options/locale/TRANSLATORS) | ||||||
|  |  | ||||||
|  | ## 支持者 | ||||||
|  |  | ||||||
|  | 感謝所有支持者! 🙏 [[成為支持者](https://opencollective.com/gitea#backer)] | ||||||
|  |  | ||||||
|  | <a href="https://opencollective.com/gitea#backers" target="_blank"><img src="https://opencollective.com/gitea/backers.svg?width=890"></a> | ||||||
|  |  | ||||||
|  | ## 贊助商 | ||||||
|  |  | ||||||
|  | 通過成為贊助商來支持這個項目。您的標誌將顯示在這裡,並帶有鏈接到您的網站。 [[成為贊助商](https://opencollective.com/gitea#sponsor)] | ||||||
|  |  | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/0/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/0/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/1/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/1/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/2/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/2/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/3/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/3/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/4/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/4/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/5/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/5/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/6/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/6/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/7/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/7/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/8/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/8/avatar.svg"></a> | ||||||
|  | <a href="https://opencollective.com/gitea/sponsor/9/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/9/avatar.svg"></a> | ||||||
|  |  | ||||||
|  | ## 常見問題 | ||||||
|  |  | ||||||
|  | **Gitea 怎麼發音?** | ||||||
|  |  | ||||||
|  | Gitea 的發音是 [/ɡɪ’ti:/](https://youtu.be/EM71-2uDAoY),就像 "gi-tea" 一樣,g 是硬音。 | ||||||
|  |  | ||||||
|  | **為什麼這個項目沒有託管在 Gitea 實例上?** | ||||||
|  |  | ||||||
|  | 我們正在 [努力](https://github.com/go-gitea/gitea/issues/1029)。 | ||||||
|  |  | ||||||
|  | **在哪裡可以找到安全補丁?** | ||||||
|  |  | ||||||
|  | 在 [發佈日誌](https://github.com/go-gitea/gitea/releases) 或 [變更日誌](https://github.com/go-gitea/gitea/blob/main/CHANGELOG.md) 中,搜索關鍵詞 `SECURITY` 以找到安全補丁。 | ||||||
|  |  | ||||||
|  | ## 許可證 | ||||||
|  |  | ||||||
|  | 這個項目是根據 MIT 許可證授權的。 | ||||||
|  | 請參閱 [LICENSE](https://github.com/go-gitea/gitea/blob/main/LICENSE) 文件以獲取完整的許可證文本。 | ||||||
|  |  | ||||||
|  | ## 進一步信息 | ||||||
|  |  | ||||||
|  | <details> | ||||||
|  | <summary>尋找界面概述?查看這裡!</summary> | ||||||
|  |  | ||||||
|  | ### 登錄/註冊頁面 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ### 用戶儀表板 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ### 用戶資料 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ### 探索 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ### 倉庫 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #### 倉庫問題 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #### 倉庫拉取請求 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #### 倉庫操作 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #### 倉庫活動 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ### 組織 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | </details> | ||||||
							
								
								
									
										156
									
								
								README_ZH.md
									
									
									
									
									
								
							
							
						
						
									
										156
									
								
								README_ZH.md
									
									
									
									
									
								
							| @@ -1,156 +0,0 @@ | |||||||
| # Gitea |  | ||||||
|  |  | ||||||
| [](https://github.com/go-gitea/gitea/actions/workflows/release-nightly.yml?query=branch%3Amain "Release Nightly") |  | ||||||
| [](https://discord.gg/Gitea "Join the Discord chat at https://discord.gg/Gitea") |  | ||||||
| [](https://goreportcard.com/report/code.gitea.io/gitea "Go Report Card") |  | ||||||
| [](https://pkg.go.dev/code.gitea.io/gitea "GoDoc") |  | ||||||
| [](https://github.com/go-gitea/gitea/releases/latest "GitHub release") |  | ||||||
| [](https://www.codetriage.com/go-gitea/gitea "Help Contribute to Open Source") |  | ||||||
| [](https://opencollective.com/gitea "Become a backer/sponsor of gitea") |  | ||||||
| [](https://opensource.org/licenses/MIT "License: MIT") |  | ||||||
| [](https://gitpod.io/#https://github.com/go-gitea/gitea) |  | ||||||
| [](https://translate.gitea.com "Crowdin") |  | ||||||
|  |  | ||||||
| [View this document in English](./README.md) |  | ||||||
|  |  | ||||||
| ## 目标 |  | ||||||
|  |  | ||||||
| Gitea 的首要目标是创建一个极易安装,运行非常快速,安装和使用体验良好的自建 Git 服务。我们采用 Go 作为后端语言,这使我们只要生成一个可执行程序即可。并且他还支持跨平台,支持 Linux、macOS 和 Windows 以及各种架构,除了 x86 和 amd64,还包括 ARM 和 PowerPC。 |  | ||||||
|  |  | ||||||
| 如果你想试用在线演示和报告问题,请访问 [demo.gitea.com](https://demo.gitea.com/)。 |  | ||||||
|  |  | ||||||
| 如果你想使用免费的 Gitea 服务(有仓库数量限制),请访问 [gitea.com](https://gitea.com/user/login)。 |  | ||||||
|  |  | ||||||
| 如果你想在 Gitea Cloud 上快速部署你自己独享的 Gitea 实例,请访问 [cloud.gitea.com](https://cloud.gitea.com) 开始免费试用。 |  | ||||||
|  |  | ||||||
| ## 文档 |  | ||||||
|  |  | ||||||
| 关于如何安装请访问我们的 [文档站](https://docs.gitea.com/zh-cn/category/installation),如果没有找到对应的文档,你也可以通过 [Discord - 英文](https://discord.gg/gitea) 和 QQ群 328432459 来和我们交流。 |  | ||||||
|  |  | ||||||
| ## 编译 |  | ||||||
|  |  | ||||||
| 在源代码的根目录下执行: |  | ||||||
|  |  | ||||||
|     TAGS="bindata" make build |  | ||||||
|  |  | ||||||
| 或者如果需要SQLite支持: |  | ||||||
|  |  | ||||||
|     TAGS="bindata sqlite sqlite_unlock_notify" make build |  | ||||||
|  |  | ||||||
| 编译过程会分成2个子任务: |  | ||||||
|  |  | ||||||
| - `make backend`,需要 [Go Stable](https://go.dev/dl/),最低版本需求可查看 [go.mod](/go.mod)。 |  | ||||||
| - `make frontend`,需要 [Node.js LTS](https://nodejs.org/en/download/) 或更高版本。 |  | ||||||
|  |  | ||||||
| 你需要连接网络来下载 go 和 npm modules。当从 tar 格式的源文件编译时,其中包含了预编译的前端文件,因此 `make frontend` 将不会被执行。这允许编译时不需要 Node.js。 |  | ||||||
|  |  | ||||||
| 更多信息: https://docs.gitea.com/installation/install-from-source |  | ||||||
|  |  | ||||||
| ## 使用 |  | ||||||
|  |  | ||||||
| 编译之后,默认会在根目录下生成一个名为 `gitea` 的文件。你可以这样执行它: |  | ||||||
|  |  | ||||||
|     ./gitea web |  | ||||||
|  |  | ||||||
| > [!注意] |  | ||||||
| > 如果你要使用API,请参见 [API 文档](https://godoc.org/code.gitea.io/sdk/gitea)。 |  | ||||||
|  |  | ||||||
| ## 贡献 |  | ||||||
|  |  | ||||||
| 贡献流程:Fork -> Patch -> Push -> Pull Request |  | ||||||
|  |  | ||||||
| > [!注意] |  | ||||||
| > |  | ||||||
| > 1. **开始贡献代码之前请确保你已经看过了 [贡献者向导(英文)](CONTRIBUTING.md)**。 |  | ||||||
| > 2. 所有的安全问题,请私下发送邮件给 **security@gitea.io**。 谢谢! |  | ||||||
|  |  | ||||||
| ## 翻译 |  | ||||||
|  |  | ||||||
| [](https://translate.gitea.com) |  | ||||||
|  |  | ||||||
| 多语言翻译是基于Crowdin进行的。 |  | ||||||
|  |  | ||||||
| 从 [文档](https://docs.gitea.com/contributing/localization) 中获取更多信息。 |  | ||||||
|  |  | ||||||
| ## 官方和第三方项目 |  | ||||||
|  |  | ||||||
| Gitea 提供官方的 [go-sdk](https://gitea.com/gitea/go-sdk),以及名为 [tea](https://gitea.com/gitea/tea) 的 CLI 工具 和 用于 Gitea Action 的 [action runner](https://gitea.com/gitea/act_runner)。 |  | ||||||
|  |  | ||||||
| [gitea/awesome-gitea](https://gitea.com/gitea/awesome-gitea) 是一个 Gitea 相关项目的列表,你可以在这里找到更多的第三方项目,包括 SDK、插件、主题等等。 |  | ||||||
|  |  | ||||||
| ## 作者 |  | ||||||
|  |  | ||||||
| - [Maintainers](https://github.com/orgs/go-gitea/people) |  | ||||||
| - [Contributors](https://github.com/go-gitea/gitea/graphs/contributors) |  | ||||||
| - [Translators](options/locale/TRANSLATORS) |  | ||||||
|  |  | ||||||
| ## 授权许可 |  | ||||||
|  |  | ||||||
| 本项目采用 MIT 开源授权许可证,完整的授权说明已放置在 [LICENSE](https://github.com/go-gitea/gitea/blob/main/LICENSE) 文件中。 |  | ||||||
|  |  | ||||||
| ## 更多信息 |  | ||||||
|  |  | ||||||
| <details> |  | ||||||
| <summary>截图</summary> |  | ||||||
|  |  | ||||||
| ### 登录界面 |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| ### 用户首页 |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| ### 用户资料 |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| ### 探索 |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| ### 仓库 |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| #### 仓库工单 |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| #### 仓库合并请求 |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| #### 仓库 Actions |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| #### 仓库动态 |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| ### 组织 |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| </details> |  | ||||||
		Reference in New Issue
	
	Block a user