2023-08-15 06:38:58 -04:00
|
|
|
# Forgejo Documentation
|
|
|
|
|
|
|
|
This is the documentation for [Forgejo](https://codeberg.org/forgejo/forgejo)
|
|
|
|
and is published [on the Forgejo website](https://forgejo.org/docs/next).
|
|
|
|
|
|
|
|
The main development branch of this repo is the
|
|
|
|
[`next`](https://codeberg.org/forgejo/docs/src/branch/next) branch,
|
|
|
|
which documents the version of Forgejo that is currently being developed.
|
|
|
|
|
|
|
|
Each time a new major version of Forgejo is released,
|
|
|
|
a new branch will be created in this repo to document the stable release.
|
|
|
|
|
|
|
|
Current release branches are as follows:
|
2023-08-16 06:32:04 -04:00
|
|
|
|
2023-08-15 06:38:58 -04:00
|
|
|
- [`next`](https://codeberg.org/forgejo/docs/src/branch/next)
|
|
|
|
- [`v1.20`](https://codeberg.org/forgejo/docs/src/branch/v1.20)
|
|
|
|
- [`v1.19`](https://codeberg.org/forgejo/docs/src/branch/v1.19)
|
|
|
|
|
|
|
|
Documentation content lives in the `docs` subfolder, and images in the `images` subfolder.
|
|
|
|
|
|
|
|
## Contributing
|
|
|
|
|
|
|
|
### Pull Requests
|
|
|
|
|
|
|
|
PRs should usually be sent against the [`next`](https://codeberg.org/forgejo/docs/src/branch/next) branch.
|
|
|
|
Sometimes it will be appropriate to send a PR against a specific release branch if the changes only affect that release.
|
|
|
|
|
2023-08-16 06:32:04 -04:00
|
|
|
Most changes should either be sent as a _single commit per PR_, or should be squashed before merging.
|
|
|
|
_Fast-forwarding is the preferred merge strategy._
|
2023-08-15 06:38:58 -04:00
|
|
|
Changes can then be backported (or if appropriate frontported) by cherry-picking.
|
|
|
|
|
|
|
|
Rarely, it will make sense to create a feature branch containting a series of commits that will
|
|
|
|
be merged instead of squashing and fast-forwarding.
|
|
|
|
Such a feature branch can then be merged into multiple versions of the docs if appropriate.
|
|
|
|
In this case, the feature branch should usually be taken from the last common ancestor of all of the
|
|
|
|
version branches into which it will potentially be merged.
|
|
|
|
|
2023-08-16 12:01:15 -04:00
|
|
|
If you have commit access to this repository, you should work on a temporary branch within this repository
|
|
|
|
with the `pr/` prefix and submit your pull request from there. Use the following commands to do it.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
git clone git@codeberg.org:forgejo/docs ; cd docs
|
|
|
|
git checkout <target-branch>
|
|
|
|
git checkout -b pr/<short-pr-desc>
|
|
|
|
# Make the changes you want to submit
|
|
|
|
git add . ; git commit
|
|
|
|
git push -u origin pr/<short-pr-desc>
|
|
|
|
# Proceed to open your pull request
|
|
|
|
```
|
|
|
|
|
|
|
|
This is currently necessary due to technical limitations with Forgejo Actions. If you do not have commit
|
|
|
|
access, you may fork this repository and send a pull request the usual way, but a live preview of the
|
|
|
|
website will not be available.
|
|
|
|
|
2023-08-18 09:09:05 -04:00
|
|
|
### Backports
|
|
|
|
|
|
|
|
If a commit is meant to be backported to a stable branch, it must be
|
2023-08-18 18:22:40 -04:00
|
|
|
labelled with `backport/v1.20`, `backport/v1.19`, etc.
|
2023-08-18 09:09:05 -04:00
|
|
|
|
2023-08-15 06:38:58 -04:00
|
|
|
### Links
|
|
|
|
|
|
|
|
All internal links within the documentation content should be relative to each page's path
|
|
|
|
at the `https://forgejo.org/docs/{{version}}/` URL.
|
|
|
|
File extensions (`.md`) should not be included, and every URL should end with a trailing slash.
|
|
|
|
Look at existing links for examples.
|
|
|
|
|
|
|
|
### Images
|
|
|
|
|
|
|
|
Images should use relative URLs to the image files, which will be published at `https://forgejo.org/images/{{version}}/`.
|
|
|
|
|
|
|
|
## Code of Conduct
|
|
|
|
|
|
|
|
All contributors are required to abide by the [Forgejo Code of Conduct](https://codeberg.org/forgejo/code-of-conduct).
|
|
|
|
|
|
|
|
Feel free to reach out to the [moderation team](https://codeberg.org/forgejo/governance/src/branch/main/TEAMS.md#moderation)
|
|
|
|
in case of any conflicts.
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
The documentation content originates from several different sources and each page has a different license.
|
|
|
|
Please check the `license` frontmatter key near the top of each file to see the relevant license.
|
|
|
|
|
|
|
|
Where not otherwise stated, content is licensed under the
|
|
|
|
[Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/).
|