You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
or compare with a previous PR adding a new API endpoint e.g. [PR #5483](https://github.com/go-gitea/gitea/pull/5843/files#diff-2e0a7b644cf31e1c8ef7d76b444fe3aaR20)
172
+
or compare with a previous PR adding a new API endpoint, e.g. [PR #5483](https://github.com/go-gitea/gitea/pull/5843/files#diff-2e0a7b644cf31e1c8ef7d76b444fe3aaR20)
173
173
174
174
You should be careful not to break the API for downstream users which depend
175
-
on a stable API. In general this means additions are acceptable, but deletions
176
-
or fundamental changes of API will be rejected.
175
+
on a stable API. In general, this means additions are acceptable, but deletions
176
+
or fundamental changes to the API will be rejected.
177
177
178
178
Once you have created or changed an API endpoint, please regenerate the Swagger
179
179
documentation using:
@@ -208,7 +208,7 @@ found in `docs/content/doc/advanced/config-cheat-sheet.en-us.md`
208
208
209
209
### Changing the logo
210
210
211
-
When changing the Gitea logo svg. You will need to run and commit the results
211
+
When changing the Gitea logo SVG, you will need to run and commit the results
212
212
of:
213
213
214
214
```bash
@@ -220,7 +220,7 @@ This will create the necessary Gitea favicon and others.
220
220
### Database Migrations
221
221
222
222
If you make breaking changes to any of the database persisted structs in the
223
-
`models/` directory you will need to make a new migration. These can be found
223
+
`models/` directory, you will need to make a new migration. These can be found
224
224
in `models/migrations/`. You can ensure that your migrations work for the main
225
225
database types using:
226
226
@@ -236,23 +236,23 @@ There are two types of test run by Gitea: Unit tests and Integration Tests.
236
236
TAGS="bindata sqlite sqlite_unlock_notify" make test# Runs the unit tests
237
237
```
238
238
239
-
Unit tests will not and cannot completely test Gitea alone. Therefore we
240
-
have written integration tests, however, these are database dependent.
239
+
Unit tests will not and cannot completely test Gitea alone. Therefore, we
240
+
have written integration tests; however, these are database dependent.
241
241
242
242
```bash
243
243
TAGS="bindata sqlite sqlite_unlock_notify" make generate build test-sqlite
244
244
```
245
245
246
-
Will run the integration tests in an sqlite environment. Other database tests
247
-
are available however may need adjustment for local environment.
246
+
will run the integration tests in an sqlite environment. Other database tests
247
+
are available but may need adjustment to the local environment.
- Example for Microsoft Active Directory (AD): `(&(objectCategory=Person)(memberOf=CN=user-group,OU=example,DC=example,DC=org)(sAMAccountName=%s)(!(UserAccountControl:1.2.840.113556.1.4.803:=2)))`
94
-
- To substitute more than once `%[1]s` should be used instead, e.g. when
94
+
- To substitute more than once,`%[1]s` should be used instead, e.g. when
95
95
matching supplied login name against multiple attributes such as user
Copy file name to clipboardExpand all lines: docs/content/doc/features/comparison.en-us.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,9 @@ menu:
15
15
16
16
# Gitea compared to other Git hosting options
17
17
18
-
To help decide if Gitea is suited for your needs here is how it compares to other Git self hosted options.
18
+
To help decide if Gitea is suited for your needs, here is how it compares to other Git self hosted options.
19
19
20
-
Be warned that we don't regularly check for feature changes in other products so this list can be outdated. If you find anything that needs to be updated in table below please report [issue on Github](https://github.com/go-gitea/gitea/issues).
20
+
Be warned that we don't regularly check for feature changes in other products, so this list may be outdated. If you find anything that needs to be updated in the table below, please report it in an [issue on GitHub](https://github.com/go-gitea/gitea/issues).
0 commit comments