mirror of https://github.com/go-gitea/gitea
Refactor docs (#21627)
This patch: - Rename some files( `.md` to `.en-us.md`), fix missed translation copy - Update link which shoud be refer to `../hacking-on-gitea/` instead of `../make/` (outdated) - Update `_redirects`: - redirect `/{zh-cn|fr-fr}/make/` to `../hacking-on-gitea/` - redirect `/zh-cn/third-party-tools/` to `/zh-cn/integrations/` - Delete duplicated/outdated files. - Update menu `weight` of developers.zh-cn.md Signed-off-by: Xinyu Zhou <i@sourcehut.net>pull/21646/head^2
parent
8f85a49947
commit
563945c50c
@ -1,43 +0,0 @@ |
||||
--- |
||||
date: "2016-12-01T16:00:00+02:00" |
||||
title: "加入 Gitea 开源" |
||||
slug: "hacking-on-gitea" |
||||
weight: 10 |
||||
toc: false |
||||
draft: false |
||||
menu: |
||||
sidebar: |
||||
parent: "advanced" |
||||
name: "加入 Gitea 开源" |
||||
weight: 10 |
||||
identifier: "hacking-on-gitea" |
||||
--- |
||||
|
||||
# Hacking on Gitea |
||||
|
||||
首先你需要一些运行环境,这和 [从源代码安装]({{< relref "from-source.zh-cn.md" >}}) 相同,如果你还没有设置好,可以先阅读那个章节。 |
||||
|
||||
如果你想为 Gitea 贡献代码,你需要 Fork 这个项目并且以 `master` 为开发分支。Gitea 使用 Govendor |
||||
来管理依赖,因此所有依赖项都被工具自动 copy 在 vendor 子目录下。用下面的命令来下载源码: |
||||
|
||||
``` |
||||
go get -d code.gitea.io/gitea |
||||
``` |
||||
|
||||
然后你可以在 Github 上 fork [Gitea 项目](https://github.com/go-gitea/gitea),之后可以通过下面的命令进入源码目录: |
||||
|
||||
``` |
||||
cd $GOPATH/src/code.gitea.io/gitea |
||||
``` |
||||
|
||||
要创建 pull requests 你还需要在源码中新增一个 remote 指向你 Fork 的地址,直接推送到 origin 的话会告诉你没有写权限: |
||||
|
||||
``` |
||||
git remote rename origin upstream |
||||
git remote add origin git@github.com:<USERNAME>/gitea.git |
||||
git fetch --all --prune |
||||
``` |
||||
|
||||
然后你就可以开始开发了。你可以看一下 `Makefile` 的内容。`make test` 可以运行测试程序, `make build` 将生成一个 `gitea` 可运行文件在根目录。如果你的提交比较复杂,尽量多写一些单元测试代码。 |
||||
|
||||
好了,到这里你已经设置好了所有的开发 Gitea 所需的环境。欢迎成为 Gitea 的 Contributor。 |
@ -1,44 +0,0 @@ |
||||
--- |
||||
date: "2017-08-23T09:00:00+02:00" |
||||
title: "Make" |
||||
slug: "make" |
||||
weight: 10 |
||||
toc: false |
||||
draft: false |
||||
menu: |
||||
sidebar: |
||||
parent: "advanced" |
||||
name: "Make" |
||||
weight: 30 |
||||
identifier: "make" |
||||
--- |
||||
|
||||
# Make |
||||
|
||||
Gitea fait largement usage de Make pour automatiser les tâches et avoir un développement plus rapide. Ce guide explique comment installer Make. |
||||
|
||||
### Linux |
||||
|
||||
Vous pouvez installer Make avec votre gestionnaire de paquetages |
||||
|
||||
Depuis Ubuntu/Debian: |
||||
|
||||
```bash |
||||
sudo apt-get install build-essential |
||||
``` |
||||
|
||||
Depuis Fedora/RHEL/CentOS: |
||||
|
||||
```bash |
||||
sudo yum install make |
||||
``` |
||||
|
||||
### Windows |
||||
|
||||
Si vous utilisez Windows, vous pouvez télécharger une des versions suivantes de Make: |
||||
|
||||
- [Simple binaire](http://www.equation.com/servlet/equation.cmd?fa=make). Copiez-le quelque part et mettez à jour `PATH`. |
||||
- [32-bits version](ftp://ftp.equation.com/make/32/make.exe) |
||||
- [64-bits version](ftp://ftp.equation.com/make/64/make.exe) |
||||
- [MinGW](http://www.mingw.org/) inclut un _build_. Le fichier binaire est nommé `mingw32-make.exe` plutôt que `make.exe`. Ajoutez le dossier `bin` à votre `PATH`. |
||||
- [Chocolatey package](https://chocolatey.org/packages/make). Exécutez `choco install make`. |
@ -1,45 +0,0 @@ |
||||
--- |
||||
date: "2017-01-14T11:00:00-02:00" |
||||
title: "Make 安装" |
||||
slug: "make" |
||||
weight: 10 |
||||
toc: false |
||||
draft: false |
||||
menu: |
||||
sidebar: |
||||
parent: "advanced" |
||||
name: "Make 安装" |
||||
weight: 30 |
||||
identifier: "make" |
||||
--- |
||||
|
||||
# 安装 Make |
||||
|
||||
Gitea 大量使用了 Make 工具来自动执行任务并改进开发,本文将介绍如何安装 Make。 |
||||
|
||||
### 在 Linux 环境下 |
||||
|
||||
可以使用包管理工具来安装 Make。 |
||||
|
||||
Ubuntu/Debian 环境,执行以下命令: |
||||
|
||||
```bash |
||||
sudo apt-get install make |
||||
``` |
||||
|
||||
Fedora/RHEL/CentOS,执行以下命令: |
||||
|
||||
```bash |
||||
sudo yum install make |
||||
``` |
||||
|
||||
### 在 Windows 环境下 |
||||
|
||||
您可以参照以下三种方案在 Windows 环境安装 Make: |
||||
|
||||
- 直接使用 [exe文件](http://www.equation.com/servlet/equation.cmd?fa=make):将适合您系统的exe文件拷贝到某处并添加至环境变量 `PATH` 中。 |
||||
- [32 位版本](ftp://ftp.equation.com/make/32/make.exe) |
||||
- [64 位版本](ftp://ftp.equation.com/make/64/make.exe) |
||||
- 使用 [MinGW](http://www.mingw.org/) 工具: |
||||
- 此处使用二进制文件 `mingw32-make.exe` 替代前面提到的 `make.exe`文件。同样您需要将包含此exe文件的 `bin` 目录添加至环境变量 `PATH`中。 |
||||
- 通过 [Chocolatey](https://chocolatey.org/packages/make) 安装: 执行 `choco install make` 命令即可。 |
@ -1,39 +0,0 @@ |
||||
--- |
||||
date: "2019-03-11T21:45:00+00:00" |
||||
title: "高级: 第三方工具" |
||||
slug: "third-party-tools" |
||||
weight: 50 |
||||
toc: false |
||||
draft: false |
||||
menu: |
||||
sidebar: |
||||
parent: "advanced" |
||||
name: "第三方工具" |
||||
weight: 50 |
||||
identifier: "third-party-tools" |
||||
--- |
||||
|
||||
# 第三方工具列表 |
||||
|
||||
**注意:** 这些工具并没有经过Gitea的检验,在这里列出它们只是为了便捷. |
||||
|
||||
*此列表并不是完整的列表,可以随时咨询如何添加!* |
||||
|
||||
### 持续集成 |
||||
|
||||
[BuildKite 连接器](https://github.com/techknowlogick/gitea-buildkite-connector) |
||||
[Jenkins 插件](https://github.com/jenkinsci/gitea-plugin) |
||||
[Gitea搭配Drone](https://docs.drone.io/installation/gitea) |
||||
|
||||
### 迁移 |
||||
|
||||
[Gitea安装脚本](https://git.coolaj86.com/coolaj86/gitea-installer.sh) |
||||
[GitHub迁移](https://gitea.com/gitea/migrator) |
||||
|
||||
### 移动端 |
||||
|
||||
[安卓客户端GitNex](https://gitlab.com/mmarif4u/gitnex) |
||||
|
||||
### 编辑器扩展 |
||||
|
||||
- [Gitea的Visual Studio扩展](https://github.com/maikebing/Gitea.VisualStudio) 从 [Visual Studio 扩展市场](https://marketplace.visualstudio.com/items?itemName=MysticBoy.GiteaExtensionforVisualStudio) 下载 |
Loading…
Reference in new issue