gitea-design/repo.html

548 lines
38 KiB
HTML
Raw Normal View History

2019-02-07 12:27:58 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Repository</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/main.css"/>
</head>
<body>
2019-02-07 13:32:38 +00:00
<!-- Top navbar -->
<nav class="navbar is-dark" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="#">
2019-02-08 17:51:28 +00:00
<img src="images/gitea-sm.png" alt=""/>
2019-02-07 13:32:38 +00:00
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item">Home</a>
<a class="navbar-item">Issues</a>
<a class="navbar-item">Pull-Requests</a>
<a class="navbar-item">Discover</a>
</div>
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
<a class="button is-light">
Log in
</a>
</div>
</div>
<div class="navbar-dropdown">
<a class="navbar-item">
Overview
</a>
</div>
</div>
</div>
</nav>
<!-- Main content (Well, anything which is not the navbar) -->
<div class="columns repo">
<div class="column is-2 sidemenu">
<aside class="menu">
2019-02-08 15:58:32 +00:00
<p class="menu-label">
Repository
</p>
2019-02-07 13:32:38 +00:00
<ul class="menu-list">
<li><a class="is-active">
<span class="icon">
<i class="fas fa-code"></i>
</span>
Code
</a></li>
<li><a>
<span class="icon">
<i class="fas fa-exclamation-circle"></i>
</span>
Issues
2019-02-08 15:58:32 +00:00
<span class="counter">452</span>
2019-02-07 13:32:38 +00:00
</a></li>
<li><a>
<span class="icon">
<i class="fas fa-compress"></i>
</span>
Pull-Requests
2019-02-08 15:58:32 +00:00
<span class="counter">96</span>
2019-02-07 13:32:38 +00:00
</a></li>
<li><a>
<span class="icon">
<i class="fas fa-tag"></i>
</span>
Releases
2019-02-08 15:58:32 +00:00
<span class="counter">6</span>
2019-02-07 13:32:38 +00:00
</a></li>
<li><a>
<span class="icon">
<i class="fas fa-align-justify"></i>
</span>
Wiki
</a></li>
<li><a>
<span class="icon">
<i class="fas fa-heartbeat"></i>
</span>
Activity
</a></li>
<li><a>
<span class="icon">
<i class="fas fa-cog"></i>
</span>
Settings</a></li>
</ul>
</aside>
</div>
<div class="column">
2019-02-08 15:58:32 +00:00
<!-- The actual repo content -->
2019-02-08 16:40:20 +00:00
<div class="repo-content">
<div class="header">
<span class="icon">
<i class="far fa-file-code"></i>
</span>
<h1 class="title">go-gitea/gitea</h1>
<h4 class="subtitle">forked from <a href="#">github.com/go-gitea/gitea</a></h4>
<div class="level">
<div class="level-left">
<p>
Git with a cup of tea, painless self-hosted git service. <a href="#">https://gitea.io</a>
</p>
</div>
<div class="level-right">
<span class="tag">devops</span>
<span class="tag">golang</span>
<span class="tag">git</span>
<span class="tag">gitea</span>
<span class="tag">gogs</span>
</div>
</div>
</div>
<!-- repository stats -->
<div class="level stats">
<div class="level-item has-text-centered">
<span class="icon">
<i class="fas fa-clock"></i>
</span>
<div>
<p class="title">3,456</p>
<p class="heading">Commits</p>
</div>
</div>
<div class="level-item has-text-centered">
<span class="icon">
<i class="fas fa-code-branch"></i>
</span>
<div>
<p class="title">8</p>
<p class="heading">Branches</p>
</div>
</div>
<div class="level-item has-text-centered">
<span class="icon">
<i class="fas fa-users"></i>
</span>
<div>
<p class="title">1,234</p>
<p class="heading">Contributors</p>
</div>
</div>
</div>
2019-02-08 17:06:08 +00:00
<!-- Branch/clone options start here -->
<div class="level box repo-options">
<div class="level-left">
<a class="button is-success icon clone-button">
<i class="fas fa-code-branch"></i>
</a>
<div class="field">
<div class="control has-icons-left">
<div class="select is-small">
<select>
<option selected>master</option>
</select>
</div>
<div class="icon is-small is-left">
<i class="fas fa-code-branch"></i>
</div>
</div>
</div>
</div>
<div class="level-right">
<div class="buttons has-addons">
<a class="button is-link is-small">New File</a>
<a class="button is-link is-small">Upload Files</a>
</div>
<div class="buttons has-addons">
<a class="button is-small is-outlined">HTTP</a>
<a class="button is-small is-link is-outlined">SSH</a>
<input class="button is-small" type="text" value="git@github.com:go-gitea/gitea.git" readonly>
<a class="button is-small is-outlined">
<span class="icon">
<i class="far fa-clipboard"></i>
</span>
</a>
<a class="button is-small is-outlined">
<span class="icon">
<i class="fas fa-download"></i>
</span>
</a>
</div>
</div>
</div>
2019-02-08 16:40:20 +00:00
<!-- The repo content is listed here -->
2019-02-08 18:01:22 +00:00
<div class="box has-header repo-files">
<div class="box-header level">
2019-02-08 17:51:28 +00:00
<div class="level-left">
<img alt="@zeripath" src="images/zeripath.png" width="20" height="20">
<img alt="@xabufr" src="images/xabufr.png" width="20" height="20">
<strong>xabufr</strong>&nbsp;and&nbsp;<strong>zeripath</strong>&nbsp;
<a href="#">
Fix&nbsp;<a href="#">#5799</a> - swagger for mergePullRequest (<a href="#">#5996</a>)
</a>
</div>
<div class="level-right">
Latest commit&nbsp;<a href="#">7fb09f0</a>&nbsp;&nbsp;<span>9 hours ago</span>
</div>
</div>
<!-- Repo content. Finally! -->
<table class="table is-fullwidth is-hoverable">
<tbody>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>.github</td>
<td class="commit">Force the PR close time to 60 days (#5770)</td>
<td>20 days ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>assets</td>
<td class="commit">Add task to generate images from SVG and change to new logo (#2194)</td>
<td>2 years ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>cmd</td>
<td class="commit">Fix ssh deploy and user key constraints (#1357) (#5939)</td>
<td>5 days ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>contrib</td>
<td class="commit">Change systemd service file to more correctly match Debian & Centos - F…</td>
<td>20 days ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>custom/conf</td>
<td class="commit">Update U2F section defaults (#5994)</td>
<td>a day ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>docker</td>
<td class="commit">Disable auto-migrate in docker container (#5730)</td>
<td>22 days ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>docs</td>
<td class="commit">Feature - Pagination for git tree API (#5838)</td>
<td>2 days ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>integrations</td>
<td class="commit">Add API to list tags (#5850)</td>
<td>a day ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>models</td>
<td class="commit">Add API to list tags (#5850)</td>
<td>a day ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>modules</td>
<td class="commit">Fix #5799 - swagger for mergePullRequest (#5996)</td>
<td class="commit">10 hours ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>options</td>
<td class="commit">Enhance closed PR and Issue status in the list (#6000)</td>
<td class="commit">10 hours ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>public</td>
<td class="commit">UI: Make navbar full width (#5998)</td>
<td class="commit">10 hours ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>routers</td>
<td class="commit">Fix #5799 - swagger for mergePullRequest (#5996)</td>
<td class="commit">10 hours ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>scripts</td>
<td class="commit">Update gitignore list (#5258)</td>
<td>3 months ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>snap</td>
<td class="commit">Update build tags for sqlite_unlock_notify (#5144)</td>
<td>4 months ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>templates</td>
<td class="commit">Fix #5799 - swagger for mergePullRequest (#5996)</td>
<td class="commit">10 hours ago</td>
</tr>
<tr>
<td><span class="icon"><i class="fas fa-folder"></i></span>vendor</td>
<td class="commit">Add API to list tags (#5850)</td>
<td>a day ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>.changelog.yml</td>
<td class="commit">Add changelog config file for generate changelog (#2461)</td>
<td>a year ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>.drone.yml</td>
<td class="commit">Add migration test (#5773)</td>
<td>11 days ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>.editorconfig</td>
<td class="commit">UI: Repo header tweaks (#5945)</td>
<td>3 days ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>.gitattributes</td>
<td class="commit">ignore static files statstics for linguist</td>
<td>2 years ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>.gitignore</td>
<td class="commit">Added test environment for mssql (#4282)</td>
<td>2 months ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>.lgtm</td>
<td class="commit">refactor: ignore LGTM from author of pull request. (#3283)</td>
<td>a year ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>.revive.toml</td>
<td class="commit">refactor: replace lint to revive (#5422)</td>
<td>2 months ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>BSDmakefile</td>
<td class="commit">Add BSDmakefile to prevent errors when `make` is called under FreeBSD (…</td>
<td>7 months ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>CHANGELOG.md</td>
<td class="commit">1.7.1 changelog (#5919)</td>
<td>8 days ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>CONTRIBUTING.md</td>
<td class="commit">Update owners & Date in contributing (#5620)</td>
<td>a month ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>DCO</td>
<td class="commit">follow the advisor: add DCO and some improvements</td>
<td>2 years ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>Dockerfile</td>
<td class="commit">Upgrade alpine to 3.9 (#5909)</td>
<td>3 days ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>Gopkg.lock</td>
<td class="commit">Add API to list tags (#5850)</td>
<td>a day ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>Gopkg.toml</td>
<td class="commit">upgrade go-sql-driver/mysql to fix invalid connection error (#5748)</td>
<td>23 days ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>LICENSE</td>
<td class="commit">Fix typo</td>
<td>2 years ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>MAINTAINERS</td>
<td class="commit">Update @jonasfranz's username (#5619)</td>
<td>a month ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>Makefile</td>
<td class="commit">Add migration test (#5773)</td>
<td>11 days ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>README.md</td>
<td class="commit">Update API link in README (#5241)</td>
<td>3 months ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>README_ZH.md</td>
<td class="commit">Move README_ZH.md Screenshots to Bottom (#4895)</td>
<td>5 months ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>main.go</td>
<td class="commit">Include Go toolchain to --version (#5830)</td>
<td>15 days ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>package-lock.json</td>
<td class="commit">Update npm dependencies, regenerate CSS (#4415)</td>
<td>7 months ago</td>
</tr>
<tr>
<td><span class="icon"><i class="far fa-file-alt"></i></span>package.json</td>
<td class="commit">Update npm dependencies, regenerate CSS (#4415)</td>
<td>7 months ago</td>
</tr>
</tbody>
</table>
2019-02-08 16:40:20 +00:00
</div>
2019-02-08 18:01:22 +00:00
<div class="box has-header">
<div class="box-header">
<span class="icon">
<i class="fas fa-file-alt"></i>
</span>
Readme.md
</div>
<div class="content">
<p><a href="https://github.com/go-gitea/gitea/blob/master/README_ZH.md">简体中文</a></p>
<h1><a id="user-content-gitea---git-with-a-cup-of-tea" class="anchor" aria-hidden="true" href="#gitea---git-with-a-cup-of-tea"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>Gitea - Git with a cup of tea</h1>
<p><a href="https://drone.gitea.io/go-gitea/gitea" rel="nofollow"><img src="https://camo.githubusercontent.com/db404df0997e4828f43766bbc18b171e46552b77/68747470733a2f2f64726f6e652e67697465612e696f2f6170692f6261646765732f676f2d67697465612f67697465612f7374617475732e737667" alt="Build Status" data-canonical-src="https://drone.gitea.io/api/badges/go-gitea/gitea/status.svg" style="max-width:100%;"></a>
<a href="https://discord.gg/NsatcWJ" rel="nofollow"><img src="https://camo.githubusercontent.com/cff0992dd4b7ce163b02712b4c22a571506e2c0f/68747470733a2f2f696d672e736869656c64732e696f2f646973636f72642f3332323533383935343131393138343338342e737667" alt="Join the Discord chat at https://discord.gg/NsatcWJ" data-canonical-src="https://img.shields.io/discord/322538954119184384.svg" style="max-width:100%;"></a>
<a href="https://microbadger.com/images/gitea/gitea" title="Get your own image badge on microbadger.com" rel="nofollow"><img src="https://camo.githubusercontent.com/88877100cded53b77b189840b65368990519e32c/68747470733a2f2f696d616765732e6d6963726f6261646765722e636f6d2f6261646765732f696d6167652f67697465612f67697465612e737667" alt="" data-canonical-src="https://images.microbadger.com/badges/image/gitea/gitea.svg" style="max-width:100%;"></a>
<a href="https://codecov.io/gh/go-gitea/gitea" rel="nofollow"><img src="https://camo.githubusercontent.com/d44700fc7a53552ab5a29798536d40f33b081d46/68747470733a2f2f636f6465636f762e696f2f67682f676f2d67697465612f67697465612f6272616e63682f6d61737465722f67726170682f62616467652e737667" alt="codecov" data-canonical-src="https://codecov.io/gh/go-gitea/gitea/branch/master/graph/badge.svg" style="max-width:100%;"></a>
<a href="https://goreportcard.com/report/code.gitea.io/gitea" rel="nofollow"><img src="https://camo.githubusercontent.com/160108fbd6b944a2437e014a02519eb06e5b98bd/68747470733a2f2f676f7265706f7274636172642e636f6d2f62616467652f636f64652e67697465612e696f2f6769746561" alt="Go Report Card" data-canonical-src="https://goreportcard.com/badge/code.gitea.io/gitea" style="max-width:100%;"></a>
<a href="https://godoc.org/code.gitea.io/gitea" rel="nofollow"><img src="https://camo.githubusercontent.com/cfa697afc49081e5c43e3b60c944329430d92615/68747470733a2f2f676f646f632e6f72672f636f64652e67697465612e696f2f67697465613f7374617475732e737667" alt="GoDoc" data-canonical-src="https://godoc.org/code.gitea.io/gitea?status.svg" style="max-width:100%;"></a>
<a href="https://github.com/go-gitea/gitea/releases/latest"><img src="https://camo.githubusercontent.com/0533c948734eee90365aeda6a9721974cc650aec/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f676f2d67697465612f67697465612e737667" alt="GitHub release" data-canonical-src="https://img.shields.io/github/release/go-gitea/gitea.svg" style="max-width:100%;"></a>
<a href="https://www.codetriage.com/go-gitea/gitea" rel="nofollow"><img src="https://camo.githubusercontent.com/f3d02cfe1a35afcede4f91760f4d8ba65a6463d1/68747470733a2f2f7777772e636f64657472696167652e636f6d2f676f2d67697465612f67697465612f6261646765732f75736572732e737667" alt="Help Contribute to Open Source" data-canonical-src="https://www.codetriage.com/go-gitea/gitea/badges/users.svg" style="max-width:100%;"></a>
<a href="https://opencollective.com/gitea" rel="nofollow"><img src="https://camo.githubusercontent.com/8e7e0eab020c0cccf1b152ed7d98681c82815378/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f67697465612f74696572732f6261636b65722f62616467652e7376673f6c6162656c3d6261636b657226636f6c6f723d627269676874677265656e" alt="Become a backer/sponsor of gitea" data-canonical-src="https://opencollective.com/gitea/tiers/backer/badge.svg?label=backer&amp;color=brightgreen" style="max-width:100%;"></a></p>
<h2><a id="user-content-purpose" class="anchor" aria-hidden="true" href="#purpose"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>Purpose</h2>
<p>The goal of this project is to make the easiest, fastest, and most
painless way of setting up a self-hosted Git service.
Using Go, this can be done with an independent binary distribution across
<strong>all platforms</strong> which Go supports, including Linux, macOS, and Windows
on x86, amd64, ARM and PowerPC architectures.
Want to try it before doing anything else?
Do it <a href="https://try.gitea.io/" rel="nofollow">with the online demo</a>!
This project has been
<a href="https://blog.gitea.io/2016/12/welcome-to-gitea/" rel="nofollow">forked</a> from
<a href="https://gogs.io" rel="nofollow">Gogs</a> since 2016.11 but changed a lot.</p>
<h2><a id="user-content-building" class="anchor" aria-hidden="true" href="#building"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>Building</h2>
<p>From the root of the source tree, run:</p>
<pre><code>TAGS="bindata" make generate all
</code></pre>
<p>More info: <a href="https://docs.gitea.io/en-us/install-from-source/" rel="nofollow">https://docs.gitea.io/en-us/install-from-source/</a></p>
<h2><a id="user-content-using" class="anchor" aria-hidden="true" href="#using"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>Using</h2>
<pre><code>./gitea web
</code></pre>
<p>NOTE: If you're interested in using our APIs, we have experimental
support with <a href="https://try.gitea.io/api/swagger" rel="nofollow">documentation</a>.</p>
<h2><a id="user-content-contributing" class="anchor" aria-hidden="true" href="#contributing"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>Contributing</h2>
<p>Expected workflow is: Fork -&gt; Patch -&gt; Push -&gt; Pull Request</p>
<p>NOTES:</p>
<ol>
<li><strong>YOU MUST READ THE <a href="/go-gitea/gitea/blob/master/CONTRIBUTING.md">CONTRIBUTORS GUIDE</a> BEFORE STARTING TO WORK ON A PULL REQUEST.</strong></li>
<li>If you have found a vulnerability in the project, please write privately to <strong><a href="mailto:security@gitea.io">security@gitea.io</a></strong>. Thanks!</li>
</ol>
<h2><a id="user-content-further-information" class="anchor" aria-hidden="true" href="#further-information"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>Further information</h2>
<p>For more information and instructions about how to install Gitea, please look
at our <a href="https://docs.gitea.io/en-us/" rel="nofollow">documentation</a>. If you have questions
that are not covered by the documentation, you can get in contact with us on
our <a href="https://discord.gg/NsatcWJ" rel="nofollow">Discord server</a>,
or <a href="https://discourse.gitea.io/" rel="nofollow">forum</a>!</p>
<h2><a id="user-content-authors" class="anchor" aria-hidden="true" href="#authors"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>Authors</h2>
<ul>
<li><a href="https://github.com/orgs/go-gitea/people">Maintainers</a></li>
<li><a href="https://github.com/go-gitea/gitea/graphs/contributors">Contributors</a></li>
<li><a href="/go-gitea/gitea/blob/master/options/locale/TRANSLATORS">Translators</a></li>
</ul>
<h2><a id="user-content-backers" class="anchor" aria-hidden="true" href="#backers"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>Backers</h2>
<p>Thank you to all our backers! <g-emoji class="g-emoji" alias="pray" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f64f.png"><img class="emoji" alt="pray" src="https://github.githubassets.com/images/icons/emoji/unicode/1f64f.png" width="20" height="20"></g-emoji> [<a href="https://opencollective.com/gitea#backer" rel="nofollow">Become a backer</a>]</p>
<p><a href="https://opencollective.com/gitea#backers" rel="nofollow"><img src="https://camo.githubusercontent.com/c4b3bfddad6324b8c531b7dbd3b8639b6687d01f/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f67697465612f6261636b6572732e7376673f77696474683d383930" data-canonical-src="https://opencollective.com/gitea/backers.svg?width=890" style="max-width:100%;"></a></p>
<h2><a id="user-content-sponsors" class="anchor" aria-hidden="true" href="#sponsors"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>Sponsors</h2>
<p>Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [<a href="https://opencollective.com/gitea#sponsor" rel="nofollow">Become a sponsor</a>]</p>
<p><a href="https://opencollective.com/gitea/sponsor/0/website" rel="nofollow"><img src="https://camo.githubusercontent.com/a15b5477ea510dd3531f330f44b67dbec76372cd/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f67697465612f73706f6e736f722f302f6176617461722e737667" data-canonical-src="https://opencollective.com/gitea/sponsor/0/avatar.svg" style="max-width:100%;"></a>
<a href="https://opencollective.com/gitea/sponsor/1/website" rel="nofollow"><img src="https://camo.githubusercontent.com/cc610d29f6ef9a41e345ff26eb20ae589397715f/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f67697465612f73706f6e736f722f312f6176617461722e737667" data-canonical-src="https://opencollective.com/gitea/sponsor/1/avatar.svg" style="max-width:100%;"></a>
<a href="https://opencollective.com/gitea/sponsor/2/website" rel="nofollow"><img src="https://camo.githubusercontent.com/e76d8f6ebe9aab94481f61b1f6032b661603de9c/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f67697465612f73706f6e736f722f322f6176617461722e737667" data-canonical-src="https://opencollective.com/gitea/sponsor/2/avatar.svg" style="max-width:100%;"></a>
<a href="https://opencollective.com/gitea/sponsor/3/website" rel="nofollow"><img src="https://camo.githubusercontent.com/c7199a04b891deb943fed6b06808d7ce2a90e7ca/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f67697465612f73706f6e736f722f332f6176617461722e737667" data-canonical-src="https://opencollective.com/gitea/sponsor/3/avatar.svg" style="max-width:100%;"></a>
<a href="https://opencollective.com/gitea/sponsor/4/website" rel="nofollow"><img src="https://camo.githubusercontent.com/592b804e77cc1fcd8d4dfc49406933950918999f/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f67697465612f73706f6e736f722f342f6176617461722e737667" data-canonical-src="https://opencollective.com/gitea/sponsor/4/avatar.svg" style="max-width:100%;"></a>
<a href="https://opencollective.com/gitea/sponsor/5/website" rel="nofollow"><img src="https://camo.githubusercontent.com/1304d9c2198f99f5b83a3afd5280699a9ad45bf6/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f67697465612f73706f6e736f722f352f6176617461722e737667" data-canonical-src="https://opencollective.com/gitea/sponsor/5/avatar.svg" style="max-width:100%;"></a>
<a href="https://opencollective.com/gitea/sponsor/6/website" rel="nofollow"><img src="https://camo.githubusercontent.com/83ae93a8f69b91cd90da352f66f97bba7082f963/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f67697465612f73706f6e736f722f362f6176617461722e737667" data-canonical-src="https://opencollective.com/gitea/sponsor/6/avatar.svg" style="max-width:100%;"></a>
<a href="https://opencollective.com/gitea/sponsor/7/website" rel="nofollow"><img src="https://camo.githubusercontent.com/49a587a7cf64b26174921e07013bcf3acad8c808/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f67697465612f73706f6e736f722f372f6176617461722e737667" data-canonical-src="https://opencollective.com/gitea/sponsor/7/avatar.svg" style="max-width:100%;"></a>
<a href="https://opencollective.com/gitea/sponsor/8/website" rel="nofollow"><img src="https://camo.githubusercontent.com/1d0ad86449559ea27b3bde099cde1b945b87236e/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f67697465612f73706f6e736f722f382f6176617461722e737667" data-canonical-src="https://opencollective.com/gitea/sponsor/8/avatar.svg" style="max-width:100%;"></a>
<a href="https://opencollective.com/gitea/sponsor/9/website" rel="nofollow"><img src="https://camo.githubusercontent.com/a12e5d5de37c728cee4ff5596d50d2d9067db391/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f67697465612f73706f6e736f722f392f6176617461722e737667" data-canonical-src="https://opencollective.com/gitea/sponsor/9/avatar.svg" style="max-width:100%;"></a></p>
<h2><a id="user-content-faq" class="anchor" aria-hidden="true" href="#faq"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>FAQ</h2>
<p><strong>How do you pronounce Gitea?</strong></p>
<p>Gitea is pronounced <a href="https://youtu.be/EM71-2uDAoY" rel="nofollow">/ɡɪti:/</a> as in "gi-tea" with a hard g.</p>
<p><strong>Why is this not hosted on a Gitea instance?</strong></p>
<p>We're <a href="https://github.com/go-gitea/gitea/issues/1029">working on it</a>.</p>
<h2><a id="user-content-license" class="anchor" aria-hidden="true" href="#license"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>License</h2>
<p>This project is licensed under the MIT License.
See the <a href="https://github.com/go-gitea/gitea/blob/master/LICENSE">LICENSE</a> file
for the full license text.</p>
<h2><a id="user-content-screenshots" class="anchor" aria-hidden="true" href="#screenshots"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>Screenshots</h2>
<p>Looking for an overview of the interface? Check it out!</p>
<table>
<thead>
<tr>
<th align="center"></th>
<th align="center"></th>
<th align="center"></th>
</tr>
</thead>
<tbody>
<tr>
<td align="center"><a target="_blank" rel="noopener noreferrer" href="https://camo.githubusercontent.com/424f0fbedfa979d0f1c6e7b9f1444991e6c2831c/68747470733a2f2f696d6167652e6962622e636f2f646d733644472f312e706e67"><img src="https://camo.githubusercontent.com/424f0fbedfa979d0f1c6e7b9f1444991e6c2831c/68747470733a2f2f696d6167652e6962622e636f2f646d733644472f312e706e67" alt="Dashboard" data-canonical-src="https://image.ibb.co/dms6DG/1.png" style="max-width:100%;"></a></td>
<td align="center"><a target="_blank" rel="noopener noreferrer" href="https://camo.githubusercontent.com/2c3db4d9ab0f437596fe80f0f84b01c36d989fb2/68747470733a2f2f696d6167652e6962622e636f2f6d364d534c772f322e706e67"><img src="https://camo.githubusercontent.com/2c3db4d9ab0f437596fe80f0f84b01c36d989fb2/68747470733a2f2f696d6167652e6962622e636f2f6d364d534c772f322e706e67" alt="Repository" data-canonical-src="https://image.ibb.co/m6MSLw/2.png" style="max-width:100%;"></a></td>
<td align="center"><a target="_blank" rel="noopener noreferrer" href="https://camo.githubusercontent.com/ddfad028cd2daf9185aae4fe1dcb9c4666b3f16a/68747470733a2f2f696d6167652e6962622e636f2f636a72534c772f332e706e67"><img src="https://camo.githubusercontent.com/ddfad028cd2daf9185aae4fe1dcb9c4666b3f16a/68747470733a2f2f696d6167652e6962622e636f2f636a72534c772f332e706e67" alt="Commits History" data-canonical-src="https://image.ibb.co/cjrSLw/3.png" style="max-width:100%;"></a></td>
</tr>
<tr>
<td align="center"><a target="_blank" rel="noopener noreferrer" href="https://camo.githubusercontent.com/2185a4061e7c1c9a29a51150bc5aaf6701b679a5/68747470733a2f2f696d6167652e6962622e636f2f6536766244472f342e706e67"><img src="https://camo.githubusercontent.com/2185a4061e7c1c9a29a51150bc5aaf6701b679a5/68747470733a2f2f696d6167652e6962622e636f2f6536766244472f342e706e67" alt="Branches" data-canonical-src="https://image.ibb.co/e6vbDG/4.png" style="max-width:100%;"></a></td>
<td align="center"><a target="_blank" rel="noopener noreferrer" href="https://camo.githubusercontent.com/7bba9343830e20aa712d263352e51da7716e5809/68747470733a2f2f696d6167652e6962622e636f2f624a544a53622f352e706e67"><img src="https://camo.githubusercontent.com/7bba9343830e20aa712d263352e51da7716e5809/68747470733a2f2f696d6167652e6962622e636f2f624a544a53622f352e706e67" alt="Issues" data-canonical-src="https://image.ibb.co/bJTJSb/5.png" style="max-width:100%;"></a></td>
<td align="center"><a target="_blank" rel="noopener noreferrer" href="https://camo.githubusercontent.com/1634c66b3896b8fca5b54851f5762dc3035d605b/68747470733a2f2f696d6167652e6962622e636f2f6530326453622f362e706e67"><img src="https://camo.githubusercontent.com/1634c66b3896b8fca5b54851f5762dc3035d605b/68747470733a2f2f696d6167652e6962622e636f2f6530326453622f362e706e67" alt="Pull Request View" data-canonical-src="https://image.ibb.co/e02dSb/6.png" style="max-width:100%;"></a></td>
</tr>
<tr>
<td align="center"><a target="_blank" rel="noopener noreferrer" href="https://camo.githubusercontent.com/970b45fd63b24618fa7ceb9e4d9d92106170667a/68747470733a2f2f696d6167652e6962622e636f2f63557a6766772f372e706e67"><img src="https://camo.githubusercontent.com/970b45fd63b24618fa7ceb9e4d9d92106170667a/68747470733a2f2f696d6167652e6962622e636f2f63557a6766772f372e706e67" alt="Releases" data-canonical-src="https://image.ibb.co/cUzgfw/7.png" style="max-width:100%;"></a></td>
<td align="center"><a target="_blank" rel="noopener noreferrer" href="https://camo.githubusercontent.com/7fd04298ea596f8f5f720b7e8b8147c15320671b/68747470733a2f2f696d6167652e6962622e636f2f655a674744472f382e706e67"><img src="https://camo.githubusercontent.com/7fd04298ea596f8f5f720b7e8b8147c15320671b/68747470733a2f2f696d6167652e6962622e636f2f655a674744472f382e706e67" alt="Activity" data-canonical-src="https://image.ibb.co/eZgGDG/8.png" style="max-width:100%;"></a></td>
<td align="center"><a target="_blank" rel="noopener noreferrer" href="https://camo.githubusercontent.com/504ab0ee65771bcc0f2825a0546a94415318afd2/68747470733a2f2f696d6167652e6962622e636f2f6459563959472f392e706e67"><img src="https://camo.githubusercontent.com/504ab0ee65771bcc0f2825a0546a94415318afd2/68747470733a2f2f696d6167652e6962622e636f2f6459563959472f392e706e67" alt="Wiki" data-canonical-src="https://image.ibb.co/dYV9YG/9.png" style="max-width:100%;"></a></td>
</tr>
<tr>
<td align="center"><a target="_blank" rel="noopener noreferrer" href="https://camo.githubusercontent.com/fb195ca5b2afb644ba13e9a5e81b897ded52b918/68747470733a2f2f696d6167652e6962622e636f2f6577413959472f31302e706e67"><img src="https://camo.githubusercontent.com/fb195ca5b2afb644ba13e9a5e81b897ded52b918/68747470733a2f2f696d6167652e6962622e636f2f6577413959472f31302e706e67" alt="Diff" data-canonical-src="https://image.ibb.co/ewA9YG/10.png" style="max-width:100%;"></a></td>
<td align="center"><a target="_blank" rel="noopener noreferrer" href="https://camo.githubusercontent.com/aa62ce3c57183cd50545488438f756275b926c48/68747470733a2f2f696d6167652e6962622e636f2f63654f7744472f31312e706e67"><img src="https://camo.githubusercontent.com/aa62ce3c57183cd50545488438f756275b926c48/68747470733a2f2f696d6167652e6962622e636f2f63654f7744472f31312e706e67" alt="Organization" data-canonical-src="https://image.ibb.co/ceOwDG/11.png" style="max-width:100%;"></a></td>
<td align="center"><a target="_blank" rel="noopener noreferrer" href="https://camo.githubusercontent.com/8bf0eb6b833312270d0ba7998391cc2130cc2fef/68747470733a2f2f696d6167652e6962622e636f2f6334345137622f31322e706e67"><img src="https://camo.githubusercontent.com/8bf0eb6b833312270d0ba7998391cc2130cc2fef/68747470733a2f2f696d6167652e6962622e636f2f6334345137622f31322e706e67" alt="Profile" data-canonical-src="https://image.ibb.co/c44Q7b/12.png" style="max-width:100%;"></a></td>
</tr>
</tbody>
</table>
</div>
</div>
2019-02-08 16:40:20 +00:00
</div>
2019-02-07 13:32:38 +00:00
</div>
</div>
2019-02-08 17:51:28 +00:00
2019-02-07 12:27:58 +00:00
</body>
</html>