mirror of
https://codeberg.org/forgejo/docs.git
synced 2025-04-26 05:30:40 +03:00
Fixed minor issues
This commit is contained in:
parent
8f23ad3a0c
commit
065fd0451b
7 changed files with 14 additions and 9 deletions
|
@ -100,7 +100,7 @@ You may wish to change the `ROOT_URL` configuration key to the HTTPS protocol so
|
|||
|
||||
#### HTTPS with manually installed certificates
|
||||
|
||||
If you have obtained certificates from elsewhere or have chosen not to let CYou'ertbot automatically install them, make the following changes to the configuration file:
|
||||
If you have obtained certificates from elsewhere or have chosen not to let Certbot automatically install them, make the following changes to the configuration file:
|
||||
|
||||
**Change the listening ports**
|
||||
|
||||
|
|
|
@ -76,9 +76,14 @@ git push origin local-branch:refs/for/remote-branch/topic
|
|||
|
||||
### Parameters
|
||||
|
||||
```sh
|
||||
git push <remote-name> <local-ref>:refs/for[draft|for-review]/<branch>/<session> [-o <topic|title|description|force-push>]
|
||||
```
|
||||
|
||||
The following parameters are available:
|
||||
|
||||
- `HEAD`: The local reference being pushed (e.g., `HEAD`, `my-branch`, a commit hash) **(required)**
|
||||
- `<remote-name>`: The name of the remote repository (e.g., `origin`) **(required)**
|
||||
- `<local-ref>`: The local reference being pushed (e.g., `HEAD`, `my-branch`, a commit hash) **(required)**
|
||||
- `refs/<for|draft|for-review>/<branch>/<session>`: Refspec **(required)**
|
||||
- `for`/`draft`/`for-review`: This parameter describes the Pull Request type. **for** opens a normal Pull Request. **draft** and **for-review** are currently silently ignored.
|
||||
- `<branch>`: The target branch that a Pull Request should be merged against **(required)**
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: Blocking a User
|
||||
title: Blocking a user
|
||||
license: 'CC-BY-SA-4.0'
|
||||
---
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ From the labels management page, click on the `New Label` button.
|
|||
|
||||

|
||||
|
||||
Labels have a mandatory name, a mandatory color, an optional description, and must either be exclusive or not (see `Scoped Labels` below).
|
||||
Labels have a mandatory name, a mandatory color, an optional description, and must either be exclusive or not (see [Scoped Labels](#scoped-labels) below).
|
||||
|
||||
When you create a repository (or an organization), you can ensure certain labels exist by using the `Issue Labels` option. This option lists a number of available label sets that are configured globally on your instance.
|
||||
|
||||
|
|
|
@ -173,8 +173,8 @@ the `!` marker to identify pull requests. For example:
|
|||
> This is pull request [!1234](#), and links to a pull request in Forgejo.
|
||||
|
||||
The `!` and `#` can be used interchangeably for issues and pull requests _except_
|
||||
for this case, where a distinction is required. If the repository uses an external
|
||||
tracker, the commit message for a squash merge will use `!` as a reference by default.
|
||||
for the case, where a distinction is required. If the repository uses an external
|
||||
tracker, the commit message for a squash merge will use `!` as a reference marker by default.
|
||||
|
||||
## Issues and Pull Requests References Summary
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ You can use the following variables enclosed in `${}` inside these templates, wh
|
|||
- PullRequestPosterName: Pull request's poster name
|
||||
- PullRequestIndex: Pull request's index number
|
||||
- PullRequestReference: Pull request's reference character with index number, i.e., #1, !2
|
||||
- ClosingIssues: Returns a string containing all issues that will be closed by this pull request, i.e., `close #1, close #2`
|
||||
- ClosingIssues: A string containing all issues that will be closed by this pull request, i.e., `close #1, close #2`
|
||||
|
||||
## Rebase
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ This button is automatically shown if:
|
|||
|
||||
- You are the pusher on a branch that still exists and that is not the default branch.
|
||||
- The push must have occurred within the last 6 hours.
|
||||
- There is no open PR for this branch.
|
||||
- There is no open pull request for this branch.
|
||||
|
||||
## Reviews
|
||||
|
||||
|
@ -125,7 +125,7 @@ That's it. You can now push your changes and create the pull request as usual by
|
|||
|
||||
Please keep in mind that project owners can do _everything_, including editing and rewriting the history using `force-push`. In some cases, this is a useful feature
|
||||
(for example, to undo accidental commits or clean up PRs),
|
||||
but in most cases, a transparent history based on a pull request-based workflow is surely preferable,
|
||||
but in most cases, a transparent history based on a pull-request-based workflow is surely preferable,
|
||||
especially for the default branches of your project where other people rely on intact history.
|
||||
|
||||
**Warning** If you accidentally leaked sensitive data, say, leaked credentials,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue