diff --git a/docs/administration/adding-legal-pages.md b/docs/administration/adding-legal-pages.md index 1ff0c013..650211fd 100644 --- a/docs/administration/adding-legal-pages.md +++ b/docs/administration/adding-legal-pages.md @@ -1,27 +1,20 @@ --- date: "2019-12-28" -title: "Adding Legal Pages" slug: adding-legal-pages sidebar_position: 110 -toc: false -draft: false aliases: - /en-us/adding-legal-pages -menu: - sidebar: - parent: "administration" - name: "Adding Legal Pages" - identifier: "adding-legal-pages" - sidebar_position: 110 --- +# Adding Legal Pages + Some jurisdictions (such as EU), requires certain legal pages (e.g. Privacy Policy) to be added to website. Follow these steps to add them to your Gitea instance. ## Getting Pages Gitea source code ships with sample pages, available in `contrib/legal` directory. Copy them to `custom/public/assets/`. For example, to add Privacy Policy: -``` +```bash wget -O /path/to/custom/public/assets/privacy.html https://raw.githubusercontent.com/go-gitea/gitea/main/contrib/legal/privacy.html.sample ``` diff --git a/docs/administration/backup-and-restore.md b/docs/administration/backup-and-restore.md index 451ef5c9..5a5cc487 100644 --- a/docs/administration/backup-and-restore.md +++ b/docs/administration/backup-and-restore.md @@ -1,18 +1,9 @@ --- date: "2017-01-01T16:00:00+02:00" -title: "Backup and Restore" slug: "backup-and-restore" sidebar_position: 11 -toc: false -draft: false aliases: - /en-us/backup-and-restore -menu: - sidebar: - parent: "administration" - name: "Backup and Restore" - sidebar_position: 11 - identifier: "backup-and-restore" --- # Backup and Restore @@ -31,7 +22,7 @@ Gitea consists of a database, files and git repositories, all of which change wh Switch to the user running Gitea: `su git`. Run `./gitea dump -c /path/to/app.ini` in the Gitea installation directory. There should be some output similar to the following: -```none +```log 2016/12/27 22:32:09 Creating tmp work dir: /tmp/gitea-dump-417443001 2016/12/27 22:32:09 Dumping local repositories.../home/git/gitea-repositories 2016/12/27 22:32:22 Dumping database... @@ -71,7 +62,7 @@ The command has to be executed with the `RUN_USER = ` specified in Example: -```none +```bash docker exec -u -it -w <--tempdir> $(docker ps -qf 'name=^$') bash -c '/usr/local/bin/gitea dump -c ' ``` diff --git a/docs/administration/cmd-embedded.md b/docs/administration/cmd-embedded.md index 1ee09626..3d19f605 100644 --- a/docs/administration/cmd-embedded.md +++ b/docs/administration/cmd-embedded.md @@ -1,18 +1,9 @@ --- date: "2020-01-25T21:00:00-03:00" -title: "Embedded data extraction tool" slug: "cmd-embedded" sidebar_position: 20 -toc: false -draft: false aliases: - /en-us/cmd-embedded -menu: - sidebar: - parent: "administration" - name: "Embedded data extraction tool" - sidebar_position: 20 - identifier: "cmd-embedded" --- # Embedded data extraction tool diff --git a/docs/administration/command-line.md b/docs/administration/command-line.md index 752a8d4c..87ba4bf8 100644 --- a/docs/administration/command-line.md +++ b/docs/administration/command-line.md @@ -1,21 +1,12 @@ --- date: "2017-01-01T16:00:00+02:00" -title: "Gitea Command Line" slug: "command-line" sidebar_position: 1 -toc: false -draft: false aliases: - /en-us/command-line -menu: - sidebar: - parent: "administration" - name: "Command Line" - sidebar_position: 1 - identifier: "command-line" --- -# Command Line +# Gitea Command Line ## Usage @@ -362,7 +353,6 @@ for automatic deployments. Provides an SSHD AuthorizedKeysCommand. Needs to be configured in the sshd config file: ```ini -... # The value of -e and the AuthorizedKeysCommandUser should match the # username running Gitea AuthorizedKeysCommandUser git @@ -374,10 +364,12 @@ provided key. You should also set the value `SSH_CREATE_AUTHORIZED_KEYS_FILE=false` in the `[server]` section of `app.ini`. -NB: opensshd requires the Gitea program to be owned by root and not +:::notice +opensshd requires the Gitea program to be owned by root and not writable by group or others. The program must be specified by an absolute path. -NB: Gitea must be running for this command to succeed. +Gitea must be running for this command to succeed. +::: ### migrate @@ -402,26 +394,26 @@ Extra logging can be set with `--log-file=...`. Sometimes when there are migrations the old columns and default values may be left unchanged in the database schema. This may lead to warning such as: -``` +```log 2020/08/02 11:32:29 ...rm/session_schema.go:360:Sync() [W] Table user Column keep_activity_private db default is , struct default is 0 ``` You can cause Gitea to recreate these tables and copy the old data into the new table with the defaults set appropriately by using: -``` +```bash gitea doctor recreate-table user ``` You can ask Gitea to recreate multiple tables using: -``` +```bash gitea doctor recreate-table table1 table2 ... ``` And if you would like Gitea to recreate all tables simply call: -``` +```bash gitea doctor recreate-table ``` @@ -554,18 +546,18 @@ Generate a new token for a runner to use to register with the server To register a global runner: -``` +```bash gitea actions generate-runner-token ``` To register a runner for a specific organization, in this case `org`: -``` +```bash gitea actions generate-runner-token -s org ``` To register a runner for a specific repo, in this case `username/test-repo`: -``` +```bash gitea actions generate-runner-token -s username/test-repo ``` diff --git a/docs/administration/config-cheat-sheet.md b/docs/administration/config-cheat-sheet.md index 1570b4de..4f8fd988 100644 --- a/docs/administration/config-cheat-sheet.md +++ b/docs/administration/config-cheat-sheet.md @@ -1,18 +1,9 @@ --- date: "2016-12-26T16:00:00+02:00" -title: "Config Cheat Sheet" slug: "config-cheat-sheet" sidebar_position: 30 -toc: false -draft: false aliases: - /en-us/config-cheat-sheet -menu: - sidebar: - parent: "administration" - name: "Config Cheat Sheet" - sidebar_position: 30 - identifier: "config-cheat-sheet" --- # Configuration Cheat Sheet @@ -351,9 +342,9 @@ The following configuration set `Content-Type: application/vnd.android.package-a - `SSH_CREATE_AUTHORIZED_PRINCIPALS_FILE`: **false/true**: Gitea will create a authorized_principals file by default when it is not using the internal ssh server and `SSH_AUTHORIZED_PRINCIPALS_ALLOW` is not `off`. - `SSH_AUTHORIZED_PRINCIPALS_BACKUP`: **false/true**: Enable SSH Authorized Principals Backup when rewriting all keys, default is true if `SSH_AUTHORIZED_PRINCIPALS_ALLOW` is not `off`. - `SSH_AUTHORIZED_KEYS_COMMAND_TEMPLATE`: **`{{.AppPath}} --config={{.CustomConf}} serv key-{{.Key.ID}}`**: Set the template for the command to passed on authorized keys. Possible keys are: AppPath, AppWorkPath, CustomConf, CustomPath, Key - where Key is a `models/asymkey.PublicKey` and the others are strings which are shellquoted. -- `SSH_SERVER_CIPHERS`: **chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com**: For the built-in SSH server, choose the ciphers to support for SSH connections, for system SSH this setting has no effect. +- `SSH_SERVER_CIPHERS`: **`chacha20-poly1305@openssh.com`, `aes128-ctr`, `aes192-ctr`, `aes256-ctr`, `aes128-gcm@openssh.com`, `aes256-gcm@openssh.com`**: For the built-in SSH server, choose the ciphers to support for SSH connections, for system SSH this setting has no effect. - `SSH_SERVER_KEY_EXCHANGES`: **curve25519-sha256, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group14-sha256, diffie-hellman-group14-sha1**: For the built-in SSH server, choose the key exchange algorithms to support for SSH connections, for system SSH this setting has no effect. -- `SSH_SERVER_MACS`: **hmac-sha2-256-etm@openssh.com, hmac-sha2-256, hmac-sha1**: For the built-in SSH server, choose the MACs to support for SSH connections, for system SSH this setting has no effect +- `SSH_SERVER_MACS`: **`hmac-sha2-256-etm@openssh.com`, `hmac-sha2-256`, `hmac-sha1`**: For the built-in SSH server, choose the MACs to support for SSH connections, for system SSH this setting has no effect - `SSH_SERVER_HOST_KEYS`: **ssh/gitea.rsa, ssh/gogs.rsa**: For the built-in SSH server, choose the keypairs to offer as the host key. The private key should be at `SSH_SERVER_HOST_KEY` and the public `SSH_SERVER_HOST_KEY.pub`. Relative paths are made absolute relative to the `APP_DATA_PATH`. If no key exists a 4096 bit RSA key will be created for you. - `SSH_KEY_TEST_PATH`: **/tmp**: Directory to create temporary files in when testing public keys using ssh-keygen, default is the system temporary directory. - `SSH_KEYGEN_PATH`: **_empty_**: Use `ssh-keygen` to parse public SSH keys. The value is passed to the shell. By default, Gitea does the parsing itself. @@ -765,10 +756,10 @@ and - `FORCE_TRUST_SERVER_CERT`: **false**: If set to `true`, completely ignores server certificate validation errors. This option is unsafe. Consider adding the certificate to the system trust store instead. - `USER`: **_empty_**: Username of mailing user (usually the sender's e-mail address). - `PASSWD`: **_empty_**: Password of mailing user. Use \`your password\` for quoting if you use special characters in the password. - - Please note: authentication is only supported when the SMTP server communication is encrypted with TLS (this can be via `STARTTLS`) or SMTP host is localhost. See [Email Setup](../administration/email-setup.md) for more information. + - Please note: authentication is only supported when the SMTP server communication is encrypted with TLS (this can be via `STARTTLS`) or SMTP host is localhost. See [Email Setup](email-setup.md) for more information. - `ENABLE_HELO`: **true**: Enable HELO operation. - `HELO_HOSTNAME`: **(retrieved from system)**: HELO hostname. -- `FROM`: **_empty_**: Mail from address, RFC 5322. This can be just an email address, or the "Name" \ format. +- `FROM`: **_empty_**: Mail from address, RFC 5322. This can be just an email address, or the "Name" `\` format. - `ENVELOPE_FROM`: **_empty_**: Address set as the From address on the SMTP mail envelope. Set to `<>` to send an empty address. - `SUBJECT_PREFIX`: **_empty_**: Prefix to be placed before e-mail subject lines. - `SENDMAIL_PATH`: **sendmail**: The location of sendmail on the operating system (can be command or full path). diff --git a/docs/administration/customizing-gitea.md b/docs/administration/customizing-gitea.md index d364c403..e0f4e954 100644 --- a/docs/administration/customizing-gitea.md +++ b/docs/administration/customizing-gitea.md @@ -1,18 +1,9 @@ --- date: "2017-04-15T14:56:00+02:00" -title: "Customizing Gitea" slug: "customizing-gitea" sidebar_position: 100 -toc: false -draft: false aliases: - /en-us/customizing-gitea -menu: - sidebar: - parent: "administration" - name: "Customizing Gitea" - identifier: "customizing-gitea" - sidebar_position: 100 --- # Customizing Gitea diff --git a/docs/administration/email-setup.md b/docs/administration/email-setup.md index 5f73e64e..4a5c23da 100644 --- a/docs/administration/email-setup.md +++ b/docs/administration/email-setup.md @@ -1,18 +1,9 @@ --- date: "2019-10-15T10:10:00+05:00" -title: "Email setup" slug: "email-setup" sidebar_position: 12 -toc: false -draft: false aliases: - /en-us/email-setup -menu: - sidebar: - parent: "administration" - name: "Email setup" - sidebar_position: 12 - identifier: "email-setup" --- # Email setup @@ -57,7 +48,7 @@ PASSWD = `password` Restart Gitea for the configuration changes to take effect. -To send a test email to validate the settings, go to Gitea > Site Administration > Configuration > SMTP Mailer Configuration. +To send a test email to validate the settings, go to Gitea > Site Administration > Configuration > Summary -> Mailer Configuration. For the full list of options check the [Config Cheat Sheet](../administration/config-cheat-sheet.md) diff --git a/docs/administration/environment-variables.md b/docs/administration/environment-variables.md index 2c6fcbe6..e9c4c86b 100644 --- a/docs/administration/environment-variables.md +++ b/docs/administration/environment-variables.md @@ -1,18 +1,9 @@ --- date: "2017-04-08T11:34:00+02:00" -title: "Environment variables" slug: "environment-variables" sidebar_position: 10 -toc: false -draft: false aliases: - /en-us/environment-variables -menu: - sidebar: - parent: "administration" - name: "Environment variables" - sidebar_position: 10 - identifier: "environment-variables" --- # Environment variables diff --git a/docs/administration/external-renderers.md b/docs/administration/external-renderers.md index 8ab1b8d8..0fa7a98c 100644 --- a/docs/administration/external-renderers.md +++ b/docs/administration/external-renderers.md @@ -1,21 +1,12 @@ --- date: "2018-11-23:00:00+02:00" -title: "External renderers" slug: "external-renderers" sidebar_position: 60 -toc: false -draft: false aliases: - /en-us/external-renderers -menu: - sidebar: - parent: "administration" - name: "External renderers" - sidebar_position: 60 - identifier: "external-renderers" --- -# Custom files rendering configuration +# External renderers Gitea supports custom file renderings (i.e., Jupyter notebooks, asciidoc, etc.) through external binaries, it is just a matter of: diff --git a/docs/administration/fail2ban-setup.md b/docs/administration/fail2ban-setup.md index 0f5ac77b..5ca2a577 100644 --- a/docs/administration/fail2ban-setup.md +++ b/docs/administration/fail2ban-setup.md @@ -3,16 +3,8 @@ date: "2018-05-11T11:00:00+02:00" title: "Fail2ban Setup " slug: "fail2ban-setup" sidebar_position: 16 -toc: false -draft: false aliases: - /en-us/fail2ban-setup -menu: - sidebar: - parent: "administration" - name: "Fail2ban setup" - sidebar_position: 16 - identifier: "fail2ban-setup" --- # Fail2ban setup to block users after failed login attempts diff --git a/docs/administration/git-lfs-support.md b/docs/administration/git-lfs-support.md index 79e45572..c3c0d7d9 100644 --- a/docs/administration/git-lfs-support.md +++ b/docs/administration/git-lfs-support.md @@ -3,16 +3,8 @@ date: "2019-10-06T08:00:00+05:00" title: "Git LFS setup" slug: "git-lfs-setup" sidebar_position: 12 -toc: false -draft: false aliases: - /en-us/git-lfs-setup -menu: - sidebar: - parent: "administration" - name: "Git LFS setup" - sidebar_position: 12 - identifier: "git-lfs-setup" --- # Git Large File Storage setup diff --git a/docs/administration/https-support.md b/docs/administration/https-support.md index afc7a608..3f0d8db0 100644 --- a/docs/administration/https-support.md +++ b/docs/administration/https-support.md @@ -3,16 +3,8 @@ date: "2018-06-02T11:00:00+02:00" title: "HTTPS setup" slug: "https-setup" sidebar_position: 12 -toc: false -draft: false aliases: - /en-us/https-setup -menu: - sidebar: - parent: "administration" - name: "HTTPS setup" - sidebar_position: 12 - identifier: "https-setup" --- # HTTPS setup to encrypt connections to Gitea diff --git a/docs/administration/logging-config.md b/docs/administration/logging-config.md index 33470ca4..30dffafc 100644 --- a/docs/administration/logging-config.md +++ b/docs/administration/logging-config.md @@ -3,16 +3,8 @@ date: "2019-04-02T17:06:00+01:00" title: "Logging Configuration" slug: "logging-config" sidebar_position: 40 -toc: false -draft: false aliases: - /en-us/logging-configuration -menu: - sidebar: - parent: "administration" - name: "Logging Configuration" - sidebar_position: 40 - identifier: "logging-config" --- # Logging Configuration diff --git a/docs/administration/mail-templates.md b/docs/administration/mail-templates.md index 1edbd677..bca31b7f 100644 --- a/docs/administration/mail-templates.md +++ b/docs/administration/mail-templates.md @@ -3,16 +3,8 @@ date: "2019-10-23T17:00:00-03:00" title: "Mail templates" slug: "mail-templates" sidebar_position: 45 -toc: false -draft: false aliases: - /en-us/mail-templates -menu: - sidebar: - parent: "administration" - name: "Mail templates" - sidebar_position: 45 - identifier: "mail-templates" --- # Mail templates diff --git a/docs/administration/repo-indexer.md b/docs/administration/repo-indexer.md index be37a8a1..067aa8ea 100644 --- a/docs/administration/repo-indexer.md +++ b/docs/administration/repo-indexer.md @@ -3,16 +3,8 @@ date: "2019-09-06T01:35:00-03:00" title: "Repository indexer" slug: "repo-indexer" sidebar_position: 45 -toc: false -draft: false aliases: - /en-us/repo-indexer -menu: - sidebar: - parent: "administration" - name: "Repository indexer" - sidebar_position: 45 - identifier: "repo-indexer" --- # Repository indexer diff --git a/docs/administration/reverse-proxies.md b/docs/administration/reverse-proxies.md index 093046af..014b8f6e 100644 --- a/docs/administration/reverse-proxies.md +++ b/docs/administration/reverse-proxies.md @@ -3,16 +3,8 @@ date: "2018-05-22T11:00:00+00:00" title: "Reverse Proxies" slug: "reverse-proxies" sidebar_position: 16 -toc: false -draft: false aliases: - /en-us/reverse-proxies -menu: - sidebar: - parent: "administration" - name: "Reverse Proxies" - sidebar_position: 16 - identifier: "reverse-proxies" --- # Reverse Proxies diff --git a/docs/administration/search-engines-indexation.md b/docs/administration/search-engines-indexation.md index 0140d68a..9875f056 100644 --- a/docs/administration/search-engines-indexation.md +++ b/docs/administration/search-engines-indexation.md @@ -3,16 +3,8 @@ date: "2019-12-31T13:55:00+05:00" title: "Search Engines Indexation" slug: "search-engines-indexation" sidebar_position: 60 -toc: false -draft: false aliases: - /en-us/search-engines-indexation -menu: - sidebar: - parent: "administration" - name: "Search Engines Indexation" - sidebar_position: 60 - identifier: "search-engines-indexation" --- # Search engines indexation of your Gitea installation diff --git a/docs/administration/signing.md b/docs/administration/signing.md index 837af14b..7a02d20d 100644 --- a/docs/administration/signing.md +++ b/docs/administration/signing.md @@ -3,16 +3,8 @@ date: "2019-08-17T10:20:00+01:00" title: "GPG Commit Signatures" slug: "signing" sidebar_position: 50 -toc: false -draft: false aliases: - /en-us/signing -menu: - sidebar: - parent: "administration" - name: "GPG Commit Signatures" - sidebar_position: 50 - identifier: "signing" --- # GPG Commit Signatures diff --git a/docs/contributing/guidelines-backend.md b/docs/contributing/guidelines-backend.md index 11455c3a..34a32681 100644 --- a/docs/contributing/guidelines-backend.md +++ b/docs/contributing/guidelines-backend.md @@ -3,16 +3,8 @@ date: "2021-11-01T23:41:00+08:00" title: "Guidelines for Backend Development" slug: "guidelines-backend" sidebar_position: 20 -toc: false -draft: false aliases: - /en-us/guidelines-backend -menu: - sidebar: - parent: "contributing" - name: "Guidelines for Backend" - sidebar_position: 20 - identifier: "guidelines-backend" --- # Guidelines for Backend Development diff --git a/docs/contributing/guidelines-frontend.md b/docs/contributing/guidelines-frontend.md index a08098a9..db0fc460 100644 --- a/docs/contributing/guidelines-frontend.md +++ b/docs/contributing/guidelines-frontend.md @@ -3,16 +3,8 @@ date: "2021-10-13T16:00:00+02:00" title: "Guidelines for Frontend Development" slug: "guidelines-frontend" sidebar_position: 30 -toc: false -draft: false aliases: - /en-us/guidelines-frontend -menu: - sidebar: - parent: "contributing" - name: "Guidelines for Frontend" - sidebar_position: 30 - identifier: "guidelines-frontend" --- # Guidelines for Frontend Development diff --git a/docs/contributing/guidelines-refactoring.md b/docs/contributing/guidelines-refactoring.md index 5d368a12..a000da6c 100644 --- a/docs/contributing/guidelines-refactoring.md +++ b/docs/contributing/guidelines-refactoring.md @@ -3,16 +3,8 @@ date: "2023-02-14T00:00:00+00:00" title: "Guidelines for Refactoring" slug: "guidelines-refactoring" sidebar_position: 40 -toc: false -draft: false aliases: - /en-us/guidelines-refactoring -menu: - sidebar: - parent: "contributing" - name: "Guidelines for Refactoring" - sidebar_position: 40 - identifier: "guidelines-refactoring" --- # Guidelines for Refactoring diff --git a/docs/contributing/localization.md b/docs/contributing/localization.md index 05ff5ee1..ae4c3fe7 100644 --- a/docs/contributing/localization.md +++ b/docs/contributing/localization.md @@ -3,16 +3,8 @@ date: "2016-12-01T16:00:00+02:00" title: "Localization" slug: "localization" sidebar_position: 70 -toc: false -draft: false aliases: - /en-us/localization -menu: - sidebar: - parent: "contributing" - name: "Localization" - sidebar_position: 70 - identifier: "localization" --- # Localization diff --git a/docs/development/api-usage.md b/docs/development/api-usage.md index 59a31d1e..42ee5f64 100644 --- a/docs/development/api-usage.md +++ b/docs/development/api-usage.md @@ -3,16 +3,8 @@ date: "2018-06-24:00:00+02:00" title: "API Usage" slug: "api-usage" sidebar_position: 40 -toc: false -draft: false aliases: - /en-us/api-usage -menu: - sidebar: - parent: "development" - name: "API Usage" - sidebar_position: 40 - identifier: "api-usage" --- # API Usage diff --git a/docs/development/hacking-on-gitea.md b/docs/development/hacking-on-gitea.md index e7fceb87..02777c1d 100644 --- a/docs/development/hacking-on-gitea.md +++ b/docs/development/hacking-on-gitea.md @@ -3,16 +3,8 @@ date: "2016-12-01T16:00:00+02:00" title: "Hacking on Gitea" slug: "hacking-on-gitea" sidebar_position: 10 -toc: false -draft: false aliases: - /en-us/hacking-on-gitea -menu: - sidebar: - parent: "development" - name: "Hacking on Gitea" - sidebar_position: 10 - identifier: "hacking-on-gitea" --- # Hacking on Gitea diff --git a/docs/development/integrations.md b/docs/development/integrations.md index 66ea3624..ff8dad83 100644 --- a/docs/development/integrations.md +++ b/docs/development/integrations.md @@ -3,16 +3,8 @@ date: "2019-04-15T17:29:00+08:00" title: "Integrations" slug: "integrations" sidebar_position: 65 -toc: false -draft: false aliases: - /en-us/integrations -menu: - sidebar: - parent: "development" - name: "Integrations" - sidebar_position: 65 - identifier: "integrations" --- # Integrations diff --git a/docs/development/migrations.md b/docs/development/migrations.md index 1e72f1b5..9e0a98a5 100644 --- a/docs/development/migrations.md +++ b/docs/development/migrations.md @@ -3,16 +3,8 @@ date: "2019-04-15T17:29:00+08:00" title: "Migrations Interfaces" slug: "migrations-interfaces" sidebar_position: 55 -toc: false -draft: false aliases: - /en-us/migrations-interfaces -menu: - sidebar: - parent: "development" - name: "Migrations Interfaces" - sidebar_position: 55 - identifier: "migrations-interfaces" --- # Migration Features diff --git a/docs/development/oauth2-provider.md b/docs/development/oauth2-provider.md index cc504502..aa810d63 100644 --- a/docs/development/oauth2-provider.md +++ b/docs/development/oauth2-provider.md @@ -3,16 +3,8 @@ date: "2023-06-01T08:40:00+08:00" title: "OAuth2 provider" slug: "oauth2-provider" sidebar_position: 41 -toc: false -draft: false aliases: - /en-us/oauth2-provider -menu: - sidebar: - parent: "development" - name: "OAuth2 Provider" - sidebar_position: 41 - identifier: "oauth2-provider" --- # OAuth2 provider diff --git a/docs/help/faq.md b/docs/help/faq.md index 6b211137..4f600e51 100644 --- a/docs/help/faq.md +++ b/docs/help/faq.md @@ -3,16 +3,8 @@ date: "2019-04-05T16:00:00+02:00" title: "FAQ" slug: "faq" sidebar_position: 5 -toc: false -draft: false aliases: - /en-us/faq -menu: - sidebar: - parent: "help" - name: "FAQ" - sidebar_position: 5 - identifier: "faq" --- # Frequently Asked Questions diff --git a/docs/help/support.md b/docs/help/support.md index 9dd30727..bfea29f3 100644 --- a/docs/help/support.md +++ b/docs/help/support.md @@ -3,16 +3,8 @@ date: "2018-05-21T15:00:00+00:00" title: "Support Options" slug: "support" sidebar_position: 20 -toc: false -draft: false aliases: - /en-us/seek-help -menu: - sidebar: - parent: "help" - name: "Support Options" - sidebar_position: 20 - identifier: "support" --- # Support Options diff --git a/docs/installation/comparison.md b/docs/installation/comparison.md index aab6a4c2..4bc66366 100644 --- a/docs/installation/comparison.md +++ b/docs/installation/comparison.md @@ -3,16 +3,8 @@ date: "2018-05-07T13:00:00+02:00" title: "Compared to other Git hosting" slug: "comparison" sidebar_position: 5 -toc: false -draft: false aliases: - /en-us/comparison -menu: - sidebar: - name: "Comparison" - sidebar_position: 5 - parent: installation - identifier: "comparison" --- # Gitea compared to other Git hosting options diff --git a/docs/installation/database-preparation.md b/docs/installation/database-preparation.md index a1898aa7..d5cd0131 100644 --- a/docs/installation/database-preparation.md +++ b/docs/installation/database-preparation.md @@ -3,16 +3,8 @@ date: "2020-01-16" title: "Database Preparation" slug: "database-prep" sidebar_position: 10 -toc: false -draft: false aliases: - /en-us/database-prep -menu: - sidebar: - parent: "installation" - name: "Database preparation" - sidebar_position: 10 - identifier: "database-prep" --- # Database Preparation diff --git a/docs/installation/from-binary.md b/docs/installation/from-binary.md index 5169588d..126745e9 100644 --- a/docs/installation/from-binary.md +++ b/docs/installation/from-binary.md @@ -3,16 +3,8 @@ date: "2017-06-19T12:00:00+02:00" title: "Installation from binary" slug: "install-from-binary" sidebar_position: 15 -toc: false -draft: false aliases: - /en-us/install-from-binary -menu: - sidebar: - parent: "installation" - name: "From binary" - sidebar_position: 15 - identifier: "install-from-binary" --- # Installation from binary diff --git a/docs/installation/from-package.md b/docs/installation/from-package.md index aceb2029..338be56c 100644 --- a/docs/installation/from-package.md +++ b/docs/installation/from-package.md @@ -3,16 +3,8 @@ date: "2016-12-01T16:00:00+02:00" title: "Installation from package" slug: "install-from-package" sidebar_position: 20 -toc: false -draft: false aliases: - /en-us/install-from-package -menu: - sidebar: - parent: "installation" - name: "From package" - sidebar_position: 20 - identifier: "install-from-package" --- # Installation from Package diff --git a/docs/installation/from-source.md b/docs/installation/from-source.md index 79ad660d..d625acc6 100644 --- a/docs/installation/from-source.md +++ b/docs/installation/from-source.md @@ -3,16 +3,8 @@ date: "2016-12-01T16:00:00+02:00" title: "Installation from source" slug: "install-from-source" sidebar_position: 30 -toc: false -draft: false aliases: - /en-us/install-from-source -menu: - sidebar: - parent: "installation" - name: "From source" - sidebar_position: 30 - identifier: "install-from-source" --- # Installation from source diff --git a/docs/installation/on-cloud-provider.md b/docs/installation/on-cloud-provider.md index d5baece8..449cd670 100644 --- a/docs/installation/on-cloud-provider.md +++ b/docs/installation/on-cloud-provider.md @@ -3,16 +3,8 @@ date: "2016-12-01T16:00:00+02:00" title: "Install on Cloud Provider" slug: "install-on-cloud-provider" sidebar_position: 90 -toc: false -draft: false aliases: - /en-us/install-on-cloud-provider -menu: - sidebar: - parent: "installation" - name: "On cloud provider" - sidebar_position: 90 - identifier: "install-on-cloud-provider" --- # Installation on Cloud Provider diff --git a/docs/installation/on-kubernetes.md b/docs/installation/on-kubernetes.md index c9036af1..da93286d 100644 --- a/docs/installation/on-kubernetes.md +++ b/docs/installation/on-kubernetes.md @@ -3,16 +3,8 @@ date: "2020-03-19T19:27:00+02:00" title: "Install on Kubernetes" slug: "install-on-kubernetes" sidebar_position: 80 -toc: false -draft: false aliases: - /en-us/install-on-kubernetes -menu: - sidebar: - parent: "installation" - name: "Kubernetes" - sidebar_position: 80 - identifier: "install-on-kubernetes" --- # Installation with Helm (on Kubernetes) diff --git a/docs/installation/run-as-service-in-ubuntu.md b/docs/installation/run-as-service-in-ubuntu.md index 4e169d6b..90968164 100644 --- a/docs/installation/run-as-service-in-ubuntu.md +++ b/docs/installation/run-as-service-in-ubuntu.md @@ -3,16 +3,8 @@ date: "2017-07-21T12:00:00+02:00" title: "Run as a Linux service" slug: "linux-service" sidebar_position: 40 -toc: false -draft: false aliases: - /en-us/linux-service -menu: - sidebar: - parent: "installation" - name: "Linux service" - sidebar_position: 40 - identifier: "linux-service" --- # Run as a Linux service diff --git a/docs/installation/upgrade-from-gitea.md b/docs/installation/upgrade-from-gitea.md index 4a5f2177..284ee051 100644 --- a/docs/installation/upgrade-from-gitea.md +++ b/docs/installation/upgrade-from-gitea.md @@ -3,16 +3,8 @@ date: "2021-09-02T16:00:00+08:00" title: "Upgrade from an old Gitea" slug: "upgrade-from-gitea" sidebar_position: 100 -toc: false -draft: false aliases: - /en-us/upgrade-from-gitea -menu: - sidebar: - parent: "installation" - name: "Upgrade From Old Gitea" - sidebar_position: 100 - identifier: "upgrade-from-gitea" --- # Upgrade from an old Gitea diff --git a/docs/installation/windows-service.md b/docs/installation/windows-service.md index 1fadc832..07552854 100644 --- a/docs/installation/windows-service.md +++ b/docs/installation/windows-service.md @@ -3,17 +3,10 @@ date: "2016-12-21T15:00:00-02:00" title: "Register as a Windows service" slug: "windows-service" sidebar_position: 50 -toc: false -draft: false aliases: - /en-us/windows-service -menu: - sidebar: - parent: "installation" - name: "Windows Service" - sidebar_position: 50 - identifier: "windows-service" --- + # Register as a Windows service ## Prerequisites diff --git a/docs/installation/with-docker-rootless.md b/docs/installation/with-docker-rootless.md index ddd5d8e0..f9125ba7 100644 --- a/docs/installation/with-docker-rootless.md +++ b/docs/installation/with-docker-rootless.md @@ -3,16 +3,8 @@ date: "2020-02-09T20:00:00+02:00" title: "Installation with Docker (rootless)" slug: "install-with-docker-rootless" sidebar_position: 60 -toc: false -draft: false aliases: - /en-us/install-with-docker-rootless -menu: - sidebar: - parent: "installation" - name: "With Docker Rootless" - sidebar_position: 60 - identifier: "install-with-docker-rootless" --- # Installation with Docker diff --git a/docs/installation/with-docker.md b/docs/installation/with-docker.md index 5b3e5c1f..b7216ffa 100644 --- a/docs/installation/with-docker.md +++ b/docs/installation/with-docker.md @@ -3,16 +3,8 @@ date: "2020-03-19T19:27:00+02:00" title: "Installation with Docker" slug: "install-with-docker" sidebar_position: 70 -toc: false -draft: false aliases: - /en-us/install-with-docker -menu: - sidebar: - parent: "installation" - name: "With Docker" - sidebar_position: 70 - identifier: "install-with-docker" --- # Installation with Docker diff --git a/docs/usage/actions/act-runner.md b/docs/usage/actions/act-runner.md index c51e920b..89090e10 100644 --- a/docs/usage/actions/act-runner.md +++ b/docs/usage/actions/act-runner.md @@ -1,16 +1,7 @@ --- date: "2023-04-27T15:00:00+08:00" -title: "Act Runner" slug: "act-runner" sidebar_position: 20 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "Act Runner" - sidebar_position: 20 - identifier: "actions-runner" --- # Act Runner diff --git a/docs/usage/actions/badge.md b/docs/usage/actions/badge.md index 57e5d9d3..95f134cd 100644 --- a/docs/usage/actions/badge.md +++ b/docs/usage/actions/badge.md @@ -1,16 +1,7 @@ --- date: "2023-02-25T00:00:00+00:00" -title: "Badge" slug: "badge" sidebar_position: 11 -toc: false -draft: false -menu: - sidebar: - parent: "actions" - name: "Badge" - sidebar_position: 11 - identifier: "Badge" --- # Badge diff --git a/docs/usage/actions/comparison.md b/docs/usage/actions/comparison.md index 4af66960..105210e8 100644 --- a/docs/usage/actions/comparison.md +++ b/docs/usage/actions/comparison.md @@ -1,16 +1,7 @@ --- date: "2023-04-27T15:00:00+08:00" -title: "Compared to GitHub Actions" slug: "comparison" sidebar_position: 30 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "Comparison" - sidebar_position: 30 - identifier: "actions-comparison" --- # Compared to GitHub Actions diff --git a/docs/usage/actions/design.md b/docs/usage/actions/design.md index 0d72c19d..9a40db86 100644 --- a/docs/usage/actions/design.md +++ b/docs/usage/actions/design.md @@ -1,16 +1,7 @@ --- date: "2023-04-27T15:00:00+08:00" -title: "Design of Gitea Actions" slug: "design" sidebar_position: 40 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "Design" - sidebar_position: 40 - identifier: "actions-design" --- # Design of Gitea Actions diff --git a/docs/usage/actions/faq.md b/docs/usage/actions/faq.md index 7d4804cc..15aa849f 100644 --- a/docs/usage/actions/faq.md +++ b/docs/usage/actions/faq.md @@ -1,16 +1,7 @@ --- date: "2023-04-27T15:00:00+08:00" -title: "Frequently Asked Questions of Gitea Actions" slug: "faq" sidebar_position: 100 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "FAQ" - sidebar_position: 100 - identifier: "actions-faq" --- # Frequently Asked Questions of Gitea Actions diff --git a/docs/usage/actions/overview.md b/docs/usage/actions/overview.md index 135fdfd4..2fc23db4 100644 --- a/docs/usage/actions/overview.md +++ b/docs/usage/actions/overview.md @@ -1,16 +1,7 @@ --- date: "2023-04-27T15:00:00+08:00" -title: "Gitea Actions" slug: "overview" sidebar_position: 1 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "Overview" - sidebar_position: 1 - identifier: "actions-overview" --- # Gitea Actions diff --git a/docs/usage/actions/quickstart.md b/docs/usage/actions/quickstart.md index e6e3a503..9a9faf6e 100644 --- a/docs/usage/actions/quickstart.md +++ b/docs/usage/actions/quickstart.md @@ -1,16 +1,7 @@ --- date: "2023-04-27T15:00:00+08:00" -title: "Quick Start" slug: "quickstart" sidebar_position: 10 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "Quick Start" - sidebar_position: 10 - identifier: "actions-quickstart" --- # Quick Start diff --git a/docs/usage/actions/secrets.md b/docs/usage/actions/secrets.md index 5bf1f1a1..199b40ae 100644 --- a/docs/usage/actions/secrets.md +++ b/docs/usage/actions/secrets.md @@ -1,16 +1,7 @@ --- date: "2022-12-19T21:26:00+08:00" -title: "Secrets" slug: "secrets" sidebar_position: 50 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "Secrets" - sidebar_position: 50 - identifier: "usage-secrets" --- # Secrets diff --git a/docs/usage/actions/variables.md b/docs/usage/actions/variables.md index dee2e742..ef76c61a 100644 --- a/docs/usage/actions/variables.md +++ b/docs/usage/actions/variables.md @@ -1,16 +1,7 @@ --- date: "2024-04-10T22:21:00+08:00" -title: "Variables" slug: "actions-variables" sidebar_position: 25 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "Variables" - sidebar_position: 25 - identifier: "actions-variables" --- ## Variables diff --git a/docs/usage/agit-support.md b/docs/usage/agit-support.md index fff91243..b9cb4be4 100644 --- a/docs/usage/agit-support.md +++ b/docs/usage/agit-support.md @@ -3,16 +3,8 @@ date: " 2022-09-01T20:50:42+0000" title: "Agit Setup" slug: "agit-setup" sidebar_position: 12 -toc: false -draft: false aliases: - /en-us/agit-setup -menu: - sidebar: - parent: "usage" - name: "Agit Setup" - sidebar_position: 12 - identifier: "agit-setup" --- # Agit Setup diff --git a/docs/usage/authentication.md b/docs/usage/authentication.md index 40c8f80f..b13400a1 100644 --- a/docs/usage/authentication.md +++ b/docs/usage/authentication.md @@ -3,16 +3,8 @@ date: "2016-12-01T16:00:00+02:00" title: "Authentication" slug: "authentication" sidebar_position: 10 -toc: false -draft: false aliases: - /en-us/authentication -menu: - sidebar: - parent: "usage" - name: "Authentication" - sidebar_position: 10 - identifier: "authentication" --- # Authentication diff --git a/docs/usage/blame.md b/docs/usage/blame.md index 7772bbc1..f510236a 100644 --- a/docs/usage/blame.md +++ b/docs/usage/blame.md @@ -3,16 +3,8 @@ date: "2023-08-14T00:00:00+00:00" title: "Blame File View" slug: "blame" sidebar_position: 13 -toc: false -draft: false aliases: - /en-us/blame -menu: - sidebar: - parent: "usage" - name: "Blame" - sidebar_position: 13 - identifier: "blame" --- # Blame File View diff --git a/docs/usage/blocking-users.md b/docs/usage/blocking-users.md index b59bbe4d..2a47fdbc 100644 --- a/docs/usage/blocking-users.md +++ b/docs/usage/blocking-users.md @@ -3,16 +3,8 @@ date: "2024-01-31T00:00:00+00:00" title: "Blocking a user" slug: "blocking-user" sidebar_position: 25 -toc: false -draft: false aliases: - /en-us/webhooks -menu: - sidebar: - parent: "usage" - name: "Blocking a user" - sidebar_position: 30 - identifier: "blocking-user" --- # Blocking a user diff --git a/docs/usage/clone-filter.md b/docs/usage/clone-filter.md index c3d4a43e..d6ff9a91 100644 --- a/docs/usage/clone-filter.md +++ b/docs/usage/clone-filter.md @@ -3,16 +3,8 @@ date: "2021-02-02" title: "Clone filters (partial clone)" slug: "clone-filters" sidebar_position: 25 -draft: false -toc: false aliases: - /en-us/clone-filters -menu: - sidebar: - parent: "usage" - name: "Clone filters" - sidebar_position: 25 - identifier: "clone-filters" --- # Clone filters (partial clone) diff --git a/docs/usage/code-owners.md b/docs/usage/code-owners.md index d39b3855..2a0d24d8 100644 --- a/docs/usage/code-owners.md +++ b/docs/usage/code-owners.md @@ -3,16 +3,8 @@ date: "2023-05-24T16:00:00+00:00" title: "Code Owners" slug: "code-owners" sidebar_position: 30 -toc: false -draft: false aliases: - /en-us/code-owners -menu: - sidebar: - parent: "usage" - name: "Code Owners" - sidebar_position: 30 - identifier: "code-owners" --- # Code Owners diff --git a/docs/usage/incoming-email.md b/docs/usage/incoming-email.md index 3f20f3b1..dbc45544 100644 --- a/docs/usage/incoming-email.md +++ b/docs/usage/incoming-email.md @@ -1,18 +1,9 @@ --- date: "2022-12-01T00:00:00+00:00" -title: "Incoming Email" slug: "incoming-email" sidebar_position: 13 -draft: false -toc: false aliases: - /en-us/incoming-email -menu: - sidebar: - parent: "usage" - name: "Incoming Email" - sidebar_position: 13 - identifier: "incoming-email" --- # Incoming Email diff --git a/docs/usage/issue-pull-request-templates.md b/docs/usage/issue-pull-request-templates.md index 5220e0c7..29f6431e 100644 --- a/docs/usage/issue-pull-request-templates.md +++ b/docs/usage/issue-pull-request-templates.md @@ -3,16 +3,8 @@ date: "2018-05-10T16:00:00+02:00" title: "Issue and Pull Request templates" slug: "issue-pull-request-templates" sidebar_position: 15 -toc: false -draft: false aliases: - /en-us/issue-pull-request-templates -menu: - sidebar: - parent: "usage" - name: "Issue and Pull Request templates" - sidebar_position: 15 - identifier: "issue-pull-request-templates" --- # Issue and Pull Request Templates diff --git a/docs/usage/labels.md b/docs/usage/labels.md index 670e7756..b2214e4e 100644 --- a/docs/usage/labels.md +++ b/docs/usage/labels.md @@ -1,18 +1,9 @@ --- date: "2023-03-04T19:00:00+00:00" -title: "Labels" slug: "labels" sidebar_position: 13 -toc: false -draft: false aliases: - /en-us/labels -menu: - sidebar: - parent: "usage" - name: "Labels" - sidebar_position: 13 - identifier: "labels" --- # Labels diff --git a/docs/usage/linked-references.md b/docs/usage/linked-references.md index e5c28abb..74bf7332 100644 --- a/docs/usage/linked-references.md +++ b/docs/usage/linked-references.md @@ -3,16 +3,8 @@ date: "2019-11-21T17:00:00-03:00" title: "Automatically Linked References" slug: "automatically-linked-references" sidebar_position: 15 -toc: false -draft: false aliases: - /en-us/automatically-linked-references -menu: - sidebar: - parent: "usage" - name: "Automatically Linked References" - sidebar_position: 15 - identifier: "automatically-linked-references" --- # Automatically Linked References in Issues, Pull Requests and Commit Messages diff --git a/docs/usage/merge-message-templates.md b/docs/usage/merge-message-templates.md index 5116be33..56d78504 100644 --- a/docs/usage/merge-message-templates.md +++ b/docs/usage/merge-message-templates.md @@ -3,16 +3,8 @@ date: "2022-08-31T17:35:40+08:00" title: "Merge Message templates" slug: "merge-message-templates" sidebar_position: 15 -toc: false -draft: false aliases: - /en-us/merge-message-templates -menu: - sidebar: - parent: "usage" - name: "Merge Message templates" - sidebar_position: 15 - identifier: "merge-message-templates" --- # Merge Message templates diff --git a/docs/usage/multi-factor-authentication.md b/docs/usage/multi-factor-authentication.md index 9bfa3e8a..419fad37 100644 --- a/docs/usage/multi-factor-authentication.md +++ b/docs/usage/multi-factor-authentication.md @@ -3,14 +3,6 @@ date: "2023-08-22T14:21:00+08:00" title: "Multi-factor Authentication (MFA)" slug: "multi-factor-authentication" weight: 15 -toc: false -draft: false -menu: - sidebar: - parent: "usage" - name: "Multi-factor Authentication (MFA)" - weight: 15 - identifier: "multi-factor-authentication" --- # Multi-factor Authentication (MFA) diff --git a/docs/usage/packages/alpine.md b/docs/usage/packages/alpine.md index 6cf036cb..0955a3ec 100644 --- a/docs/usage/packages/alpine.md +++ b/docs/usage/packages/alpine.md @@ -1,15 +1,6 @@ --- date: "2023-03-25T00:00:00+00:00" -title: "Alpine Package Registry" slug: "alpine" -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Alpine" - sidebar_position: 4 - identifier: "alpine" --- # Alpine Package Registry diff --git a/docs/usage/packages/cargo.md b/docs/usage/packages/cargo.md index 356e7ff0..61d9c7e7 100644 --- a/docs/usage/packages/cargo.md +++ b/docs/usage/packages/cargo.md @@ -1,16 +1,7 @@ --- date: "2022-11-20T00:00:00+00:00" -title: "Cargo Package Registry" slug: "cargo" sidebar_position: 5 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Cargo" - sidebar_position: 5 - identifier: "cargo" --- # Cargo Package Registry diff --git a/docs/usage/packages/chef.md b/docs/usage/packages/chef.md index 9f23b9ea..9bb457ea 100644 --- a/docs/usage/packages/chef.md +++ b/docs/usage/packages/chef.md @@ -1,16 +1,7 @@ --- date: "2023-01-20T00:00:00+00:00" -title: "Chef Package Registry" slug: "chef" sidebar_position: 5 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Chef" - sidebar_position: 5 - identifier: "chef" --- # Chef Package Registry diff --git a/docs/usage/packages/composer.md b/docs/usage/packages/composer.md index 60ad52ac..2e79d94a 100644 --- a/docs/usage/packages/composer.md +++ b/docs/usage/packages/composer.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "Composer Package Registry" slug: "composer" sidebar_position: 10 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Composer" - sidebar_position: 10 - identifier: "composer" --- # Composer Package Registry diff --git a/docs/usage/packages/conan.md b/docs/usage/packages/conan.md index 505460b3..71490718 100644 --- a/docs/usage/packages/conan.md +++ b/docs/usage/packages/conan.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "Conan Package Registry" slug: "conan" sidebar_position: 20 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Conan" - sidebar_position: 20 - identifier: "conan" --- # Conan Package Registry diff --git a/docs/usage/packages/conda.md b/docs/usage/packages/conda.md index a256dca5..7f7414f6 100644 --- a/docs/usage/packages/conda.md +++ b/docs/usage/packages/conda.md @@ -1,16 +1,7 @@ --- date: "2022-12-28T00:00:00+00:00" -title: "Conda Package Registry" slug: "conda" sidebar_position: 25 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Conda" - sidebar_position: 25 - identifier: "conda" --- # Conda Package Registry diff --git a/docs/usage/packages/container.md b/docs/usage/packages/container.md index cdc2fdc9..79ab54cf 100644 --- a/docs/usage/packages/container.md +++ b/docs/usage/packages/container.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "Container Registry" slug: "container" sidebar_position: 30 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Container Registry" - sidebar_position: 30 - identifier: "container" --- # Container Registry diff --git a/docs/usage/packages/cran.md b/docs/usage/packages/cran.md index a6b0d318..4f2aeb00 100644 --- a/docs/usage/packages/cran.md +++ b/docs/usage/packages/cran.md @@ -1,15 +1,6 @@ --- date: "2023-01-01T00:00:00+00:00" -title: "CRAN Package Registry" slug: "cran" -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "CRAN" - sidebar_position: 35 - identifier: "cran" --- # CRAN Package Registry diff --git a/docs/usage/packages/debian.md b/docs/usage/packages/debian.md index 6ee8530b..3f1a263b 100644 --- a/docs/usage/packages/debian.md +++ b/docs/usage/packages/debian.md @@ -1,15 +1,6 @@ --- date: "2023-01-07T00:00:00+00:00" -title: "Debian Package Registry" slug: "debian" -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Debian" - sidebar_position: 35 - identifier: "debian" --- # Debian Package Registry diff --git a/docs/usage/packages/generic.md b/docs/usage/packages/generic.md index 04be6e35..315854a4 100644 --- a/docs/usage/packages/generic.md +++ b/docs/usage/packages/generic.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "Generic Package Registry" slug: "generic" sidebar_position: 40 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Generic" - sidebar_position: 40 - identifier: "generic" --- # Generic Package Registry diff --git a/docs/usage/packages/go.md b/docs/usage/packages/go.md index ed3c1a87..62445211 100644 --- a/docs/usage/packages/go.md +++ b/docs/usage/packages/go.md @@ -1,16 +1,7 @@ --- date: "2023-05-10T00:00:00+00:00" -title: "Go Package Registry" slug: "go" sidebar_position: 45 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Go" - sidebar_position: 45 - identifier: "go" --- # Go Package Registry diff --git a/docs/usage/packages/helm.md b/docs/usage/packages/helm.md index a9fe6be8..eca62085 100644 --- a/docs/usage/packages/helm.md +++ b/docs/usage/packages/helm.md @@ -1,16 +1,7 @@ --- date: "2022-04-14T00:00:00+00:00" -title: "Helm Chart Registry" slug: "helm" sidebar_position: 50 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Helm" - sidebar_position: 50 - identifier: "helm" --- # Helm Chart Registry diff --git a/docs/usage/packages/maven.md b/docs/usage/packages/maven.md index 59e71c87..c7b3ca96 100644 --- a/docs/usage/packages/maven.md +++ b/docs/usage/packages/maven.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "Maven Package Registry" slug: "maven" sidebar_position: 60 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Maven" - sidebar_position: 60 - identifier: "maven" --- # Maven Package Registry diff --git a/docs/usage/packages/npm.md b/docs/usage/packages/npm.md index ccc075b1..28c549ab 100644 --- a/docs/usage/packages/npm.md +++ b/docs/usage/packages/npm.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "npm Package Registry" slug: "npm" sidebar_position: 70 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "npm" - sidebar_position: 70 - identifier: "npm" --- # npm Package Registry diff --git a/docs/usage/packages/nuget.md b/docs/usage/packages/nuget.md index 8cd88e06..9118428d 100644 --- a/docs/usage/packages/nuget.md +++ b/docs/usage/packages/nuget.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "NuGet Package Registry" slug: "nuget" sidebar_position: 80 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "NuGet" - sidebar_position: 80 - identifier: "nuget" --- # NuGet Package Registry diff --git a/docs/usage/packages/overview.md b/docs/usage/packages/overview.md index 89fc6f28..598a1577 100644 --- a/docs/usage/packages/overview.md +++ b/docs/usage/packages/overview.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "Package Registry" slug: "overview" sidebar_position: 1 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Overview" - sidebar_position: 1 - identifier: "packages-overview" --- # Package Registry diff --git a/docs/usage/packages/pub.md b/docs/usage/packages/pub.md index e5e12de3..ebaa2346 100644 --- a/docs/usage/packages/pub.md +++ b/docs/usage/packages/pub.md @@ -1,16 +1,7 @@ --- date: "2022-07-31T00:00:00+00:00" -title: "Pub Package Registry" slug: "pub" sidebar_position: 90 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Pub" - sidebar_position: 90 - identifier: "pub" --- # Pub Package Registry diff --git a/docs/usage/packages/pypi.md b/docs/usage/packages/pypi.md index be59df07..4f411f4e 100644 --- a/docs/usage/packages/pypi.md +++ b/docs/usage/packages/pypi.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "PyPI Package Registry" slug: "pypi" sidebar_position: 100 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "PyPI" - sidebar_position: 100 - identifier: "pypi" --- # PyPI Package Registry diff --git a/docs/usage/packages/rpm.md b/docs/usage/packages/rpm.md index 1f93376b..cbd7ee8a 100644 --- a/docs/usage/packages/rpm.md +++ b/docs/usage/packages/rpm.md @@ -1,15 +1,6 @@ --- date: "2023-03-08T00:00:00+00:00" -title: "RPM Package Registry" slug: "rpm" -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "RPM" - sidebar_position: 105 - identifier: "rpm" --- # RPM Package Registry diff --git a/docs/usage/packages/rubygems.md b/docs/usage/packages/rubygems.md index cb1a225b..379b9b83 100644 --- a/docs/usage/packages/rubygems.md +++ b/docs/usage/packages/rubygems.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "RubyGems Package Registry" slug: "rubygems" sidebar_position: 110 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "RubyGems" - sidebar_position: 110 - identifier: "rubygems" --- # RubyGems Package Registry diff --git a/docs/usage/packages/storage.md b/docs/usage/packages/storage.md index 3db44aaa..3cdcc778 100644 --- a/docs/usage/packages/storage.md +++ b/docs/usage/packages/storage.md @@ -1,16 +1,7 @@ --- date: "2022-11-01T00:00:00+00:00" -title: "Storage" slug: "storage" sidebar_position: 5 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Storage" - sidebar_position: 2 - identifier: "storage" --- # Storage diff --git a/docs/usage/packages/swift.md b/docs/usage/packages/swift.md index 38eb1556..505fd0a4 100644 --- a/docs/usage/packages/swift.md +++ b/docs/usage/packages/swift.md @@ -1,16 +1,7 @@ --- date: "2023-01-10T00:00:00+00:00" -title: "Swift Package Registry" slug: "swift" sidebar_position: 95 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Swift" - sidebar_position: 95 - identifier: "swift" --- # Swift Package Registry diff --git a/docs/usage/packages/vagrant.md b/docs/usage/packages/vagrant.md index baa9c2b8..8714dd1c 100644 --- a/docs/usage/packages/vagrant.md +++ b/docs/usage/packages/vagrant.md @@ -1,16 +1,7 @@ --- date: "2022-08-23T00:00:00+00:00" -title: "Vagrant Package Registry" slug: "vagrant" sidebar_position: 120 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Vagrant" - sidebar_position: 120 - identifier: "vagrant" --- # Vagrant Package Registry diff --git a/docs/usage/permissions.md b/docs/usage/permissions.md index e4bef138..2381cf60 100644 --- a/docs/usage/permissions.md +++ b/docs/usage/permissions.md @@ -3,16 +3,8 @@ date: "2021-12-13:10:10+08:00" title: "Permissions" slug: "permissions" sidebar_position: 14 -toc: false -draft: false aliases: - /en-us/permissions -menu: - sidebar: - parent: "usage" - name: "Permissions" - sidebar_position: 14 - identifier: "permissions" --- # Permissions diff --git a/docs/usage/profile-readme.md b/docs/usage/profile-readme.md index 316a735a..a0900476 100644 --- a/docs/usage/profile-readme.md +++ b/docs/usage/profile-readme.md @@ -1,16 +1,7 @@ --- date: "2023-03-02T21:00:00+05:00" -title: "Profile READMEs" slug: "profile-readme" sidebar_position: 12 -toc: false -draft: false -menu: - sidebar: - parent: "usage" - name: "Profile READMEs" - sidebar_position: 12 - identifier: "profile-readme" --- # Profile READMEs diff --git a/docs/usage/protected-tags.md b/docs/usage/protected-tags.md index b25cbdbb..86dbdf9d 100644 --- a/docs/usage/protected-tags.md +++ b/docs/usage/protected-tags.md @@ -1,18 +1,9 @@ --- date: "2021-05-14T00:00:00-00:00" -title: "Protected tags" slug: "protected-tags" sidebar_position: 45 -toc: false -draft: false aliases: - /en-us/protected-tags -menu: - sidebar: - parent: "usage" - name: "Protected tags" - sidebar_position: 45 - identifier: "protected-tags" --- # Protected tags diff --git a/docs/usage/pull-request.md b/docs/usage/pull-request.md index 0176d0af..94bdcf85 100644 --- a/docs/usage/pull-request.md +++ b/docs/usage/pull-request.md @@ -1,18 +1,9 @@ --- date: "2018-06-01T19:00:00+02:00" -title: "Pull Request" slug: "pull-request" sidebar_position: 13 -toc: false -draft: false aliases: - /en-us/pull-request -menu: - sidebar: - parent: "usage" - name: "Pull Request" - sidebar_position: 13 - identifier: "pull-request" --- # Pull Request diff --git a/docs/usage/push.md b/docs/usage/push.md index a8c87a46..75494647 100644 --- a/docs/usage/push.md +++ b/docs/usage/push.md @@ -3,17 +3,9 @@ date: "2020-07-06T16:00:00+02:00" title: "Push" slug: "push" sidebar_position: 15 -toc: false -draft: false aliases: - /en-us/push-to-create - /en-us/push-options -menu: - sidebar: - parent: "usage" - name: "Push" - sidebar_position: 15 - identifier: "push" --- There are some additional features when pushing commits to Gitea server. diff --git a/docs/usage/repo-mirror.md b/docs/usage/repo-mirror.md index 5e3dd21a..de0e0a1b 100644 --- a/docs/usage/repo-mirror.md +++ b/docs/usage/repo-mirror.md @@ -1,18 +1,9 @@ --- date: "2021-05-13T00:00:00-00:00" -title: "Repository Mirror" slug: "repo-mirror" sidebar_position: 45 -toc: false -draft: false aliases: - /en-us/repo-mirror -menu: - sidebar: - parent: "usage" - name: "Repository Mirror" - sidebar_position: 45 - identifier: "repo-mirror" --- # Repository Mirror diff --git a/docs/usage/template-repositories.md b/docs/usage/template-repositories.md index 8ce3cc03..8b452248 100644 --- a/docs/usage/template-repositories.md +++ b/docs/usage/template-repositories.md @@ -1,18 +1,9 @@ --- date: "2019-11-28:00:00+02:00" -title: "Template Repositories" slug: "template-repositories" sidebar_position: 14 -toc: false -draft: false aliases: - /en-us/template-repositories -menu: - sidebar: - parent: "usage" - name: "Template Repositories" - sidebar_position: 14 - identifier: "template-repositories" --- # Template Repositories diff --git a/docs/usage/webhooks.md b/docs/usage/webhooks.md index 3d92e109..82a87e60 100644 --- a/docs/usage/webhooks.md +++ b/docs/usage/webhooks.md @@ -1,18 +1,9 @@ --- date: "2016-12-01T16:00:00+02:00" -title: "Webhooks" slug: "webhooks" sidebar_position: 30 -toc: false -draft: false aliases: - /en-us/webhooks -menu: - sidebar: - parent: "usage" - name: "Webhooks" - sidebar_position: 30 - identifier: "webhooks" --- # Webhooks diff --git a/versioned_docs/version-1.22/usage/actions/act-runner.md b/versioned_docs/version-1.22/usage/actions/act-runner.md index c51e920b..89090e10 100644 --- a/versioned_docs/version-1.22/usage/actions/act-runner.md +++ b/versioned_docs/version-1.22/usage/actions/act-runner.md @@ -1,16 +1,7 @@ --- date: "2023-04-27T15:00:00+08:00" -title: "Act Runner" slug: "act-runner" sidebar_position: 20 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "Act Runner" - sidebar_position: 20 - identifier: "actions-runner" --- # Act Runner diff --git a/versioned_docs/version-1.22/usage/actions/badge.md b/versioned_docs/version-1.22/usage/actions/badge.md index 57e5d9d3..95f134cd 100644 --- a/versioned_docs/version-1.22/usage/actions/badge.md +++ b/versioned_docs/version-1.22/usage/actions/badge.md @@ -1,16 +1,7 @@ --- date: "2023-02-25T00:00:00+00:00" -title: "Badge" slug: "badge" sidebar_position: 11 -toc: false -draft: false -menu: - sidebar: - parent: "actions" - name: "Badge" - sidebar_position: 11 - identifier: "Badge" --- # Badge diff --git a/versioned_docs/version-1.22/usage/actions/comparison.md b/versioned_docs/version-1.22/usage/actions/comparison.md index 4af66960..105210e8 100644 --- a/versioned_docs/version-1.22/usage/actions/comparison.md +++ b/versioned_docs/version-1.22/usage/actions/comparison.md @@ -1,16 +1,7 @@ --- date: "2023-04-27T15:00:00+08:00" -title: "Compared to GitHub Actions" slug: "comparison" sidebar_position: 30 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "Comparison" - sidebar_position: 30 - identifier: "actions-comparison" --- # Compared to GitHub Actions diff --git a/versioned_docs/version-1.22/usage/actions/design.md b/versioned_docs/version-1.22/usage/actions/design.md index 0d72c19d..9a40db86 100644 --- a/versioned_docs/version-1.22/usage/actions/design.md +++ b/versioned_docs/version-1.22/usage/actions/design.md @@ -1,16 +1,7 @@ --- date: "2023-04-27T15:00:00+08:00" -title: "Design of Gitea Actions" slug: "design" sidebar_position: 40 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "Design" - sidebar_position: 40 - identifier: "actions-design" --- # Design of Gitea Actions diff --git a/versioned_docs/version-1.22/usage/actions/faq.md b/versioned_docs/version-1.22/usage/actions/faq.md index 7d4804cc..15aa849f 100644 --- a/versioned_docs/version-1.22/usage/actions/faq.md +++ b/versioned_docs/version-1.22/usage/actions/faq.md @@ -1,16 +1,7 @@ --- date: "2023-04-27T15:00:00+08:00" -title: "Frequently Asked Questions of Gitea Actions" slug: "faq" sidebar_position: 100 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "FAQ" - sidebar_position: 100 - identifier: "actions-faq" --- # Frequently Asked Questions of Gitea Actions diff --git a/versioned_docs/version-1.22/usage/actions/overview.md b/versioned_docs/version-1.22/usage/actions/overview.md index 135fdfd4..2fc23db4 100644 --- a/versioned_docs/version-1.22/usage/actions/overview.md +++ b/versioned_docs/version-1.22/usage/actions/overview.md @@ -1,16 +1,7 @@ --- date: "2023-04-27T15:00:00+08:00" -title: "Gitea Actions" slug: "overview" sidebar_position: 1 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "Overview" - sidebar_position: 1 - identifier: "actions-overview" --- # Gitea Actions diff --git a/versioned_docs/version-1.22/usage/actions/quickstart.md b/versioned_docs/version-1.22/usage/actions/quickstart.md index e6e3a503..9a9faf6e 100644 --- a/versioned_docs/version-1.22/usage/actions/quickstart.md +++ b/versioned_docs/version-1.22/usage/actions/quickstart.md @@ -1,16 +1,7 @@ --- date: "2023-04-27T15:00:00+08:00" -title: "Quick Start" slug: "quickstart" sidebar_position: 10 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "Quick Start" - sidebar_position: 10 - identifier: "actions-quickstart" --- # Quick Start diff --git a/versioned_docs/version-1.22/usage/actions/secrets.md b/versioned_docs/version-1.22/usage/actions/secrets.md index 5bf1f1a1..199b40ae 100644 --- a/versioned_docs/version-1.22/usage/actions/secrets.md +++ b/versioned_docs/version-1.22/usage/actions/secrets.md @@ -1,16 +1,7 @@ --- date: "2022-12-19T21:26:00+08:00" -title: "Secrets" slug: "secrets" sidebar_position: 50 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "Secrets" - sidebar_position: 50 - identifier: "usage-secrets" --- # Secrets diff --git a/versioned_docs/version-1.22/usage/actions/variables.md b/versioned_docs/version-1.22/usage/actions/variables.md index dee2e742..ef76c61a 100644 --- a/versioned_docs/version-1.22/usage/actions/variables.md +++ b/versioned_docs/version-1.22/usage/actions/variables.md @@ -1,16 +1,7 @@ --- date: "2024-04-10T22:21:00+08:00" -title: "Variables" slug: "actions-variables" sidebar_position: 25 -draft: false -toc: false -menu: - sidebar: - parent: "actions" - name: "Variables" - sidebar_position: 25 - identifier: "actions-variables" --- ## Variables diff --git a/versioned_docs/version-1.22/usage/packages/alpine.md b/versioned_docs/version-1.22/usage/packages/alpine.md index 6cf036cb..0955a3ec 100644 --- a/versioned_docs/version-1.22/usage/packages/alpine.md +++ b/versioned_docs/version-1.22/usage/packages/alpine.md @@ -1,15 +1,6 @@ --- date: "2023-03-25T00:00:00+00:00" -title: "Alpine Package Registry" slug: "alpine" -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Alpine" - sidebar_position: 4 - identifier: "alpine" --- # Alpine Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/cargo.md b/versioned_docs/version-1.22/usage/packages/cargo.md index 356e7ff0..61d9c7e7 100644 --- a/versioned_docs/version-1.22/usage/packages/cargo.md +++ b/versioned_docs/version-1.22/usage/packages/cargo.md @@ -1,16 +1,7 @@ --- date: "2022-11-20T00:00:00+00:00" -title: "Cargo Package Registry" slug: "cargo" sidebar_position: 5 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Cargo" - sidebar_position: 5 - identifier: "cargo" --- # Cargo Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/chef.md b/versioned_docs/version-1.22/usage/packages/chef.md index 9f23b9ea..9bb457ea 100644 --- a/versioned_docs/version-1.22/usage/packages/chef.md +++ b/versioned_docs/version-1.22/usage/packages/chef.md @@ -1,16 +1,7 @@ --- date: "2023-01-20T00:00:00+00:00" -title: "Chef Package Registry" slug: "chef" sidebar_position: 5 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Chef" - sidebar_position: 5 - identifier: "chef" --- # Chef Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/composer.md b/versioned_docs/version-1.22/usage/packages/composer.md index 60ad52ac..2e79d94a 100644 --- a/versioned_docs/version-1.22/usage/packages/composer.md +++ b/versioned_docs/version-1.22/usage/packages/composer.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "Composer Package Registry" slug: "composer" sidebar_position: 10 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Composer" - sidebar_position: 10 - identifier: "composer" --- # Composer Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/conan.md b/versioned_docs/version-1.22/usage/packages/conan.md index 505460b3..71490718 100644 --- a/versioned_docs/version-1.22/usage/packages/conan.md +++ b/versioned_docs/version-1.22/usage/packages/conan.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "Conan Package Registry" slug: "conan" sidebar_position: 20 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Conan" - sidebar_position: 20 - identifier: "conan" --- # Conan Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/conda.md b/versioned_docs/version-1.22/usage/packages/conda.md index a256dca5..7f7414f6 100644 --- a/versioned_docs/version-1.22/usage/packages/conda.md +++ b/versioned_docs/version-1.22/usage/packages/conda.md @@ -1,16 +1,7 @@ --- date: "2022-12-28T00:00:00+00:00" -title: "Conda Package Registry" slug: "conda" sidebar_position: 25 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Conda" - sidebar_position: 25 - identifier: "conda" --- # Conda Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/container.md b/versioned_docs/version-1.22/usage/packages/container.md index cdc2fdc9..edd8f718 100644 --- a/versioned_docs/version-1.22/usage/packages/container.md +++ b/versioned_docs/version-1.22/usage/packages/container.md @@ -1,16 +1,6 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "Container Registry" slug: "container" -sidebar_position: 30 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Container Registry" - sidebar_position: 30 - identifier: "container" --- # Container Registry diff --git a/versioned_docs/version-1.22/usage/packages/cran.md b/versioned_docs/version-1.22/usage/packages/cran.md index a6b0d318..4f2aeb00 100644 --- a/versioned_docs/version-1.22/usage/packages/cran.md +++ b/versioned_docs/version-1.22/usage/packages/cran.md @@ -1,15 +1,6 @@ --- date: "2023-01-01T00:00:00+00:00" -title: "CRAN Package Registry" slug: "cran" -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "CRAN" - sidebar_position: 35 - identifier: "cran" --- # CRAN Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/debian.md b/versioned_docs/version-1.22/usage/packages/debian.md index 6ee8530b..3f1a263b 100644 --- a/versioned_docs/version-1.22/usage/packages/debian.md +++ b/versioned_docs/version-1.22/usage/packages/debian.md @@ -1,15 +1,6 @@ --- date: "2023-01-07T00:00:00+00:00" -title: "Debian Package Registry" slug: "debian" -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Debian" - sidebar_position: 35 - identifier: "debian" --- # Debian Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/generic.md b/versioned_docs/version-1.22/usage/packages/generic.md index 04be6e35..315854a4 100644 --- a/versioned_docs/version-1.22/usage/packages/generic.md +++ b/versioned_docs/version-1.22/usage/packages/generic.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "Generic Package Registry" slug: "generic" sidebar_position: 40 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Generic" - sidebar_position: 40 - identifier: "generic" --- # Generic Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/go.md b/versioned_docs/version-1.22/usage/packages/go.md index ed3c1a87..62445211 100644 --- a/versioned_docs/version-1.22/usage/packages/go.md +++ b/versioned_docs/version-1.22/usage/packages/go.md @@ -1,16 +1,7 @@ --- date: "2023-05-10T00:00:00+00:00" -title: "Go Package Registry" slug: "go" sidebar_position: 45 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Go" - sidebar_position: 45 - identifier: "go" --- # Go Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/helm.md b/versioned_docs/version-1.22/usage/packages/helm.md index a9fe6be8..eca62085 100644 --- a/versioned_docs/version-1.22/usage/packages/helm.md +++ b/versioned_docs/version-1.22/usage/packages/helm.md @@ -1,16 +1,7 @@ --- date: "2022-04-14T00:00:00+00:00" -title: "Helm Chart Registry" slug: "helm" sidebar_position: 50 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Helm" - sidebar_position: 50 - identifier: "helm" --- # Helm Chart Registry diff --git a/versioned_docs/version-1.22/usage/packages/maven.md b/versioned_docs/version-1.22/usage/packages/maven.md index 59e71c87..c7b3ca96 100644 --- a/versioned_docs/version-1.22/usage/packages/maven.md +++ b/versioned_docs/version-1.22/usage/packages/maven.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "Maven Package Registry" slug: "maven" sidebar_position: 60 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Maven" - sidebar_position: 60 - identifier: "maven" --- # Maven Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/npm.md b/versioned_docs/version-1.22/usage/packages/npm.md index ccc075b1..28c549ab 100644 --- a/versioned_docs/version-1.22/usage/packages/npm.md +++ b/versioned_docs/version-1.22/usage/packages/npm.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "npm Package Registry" slug: "npm" sidebar_position: 70 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "npm" - sidebar_position: 70 - identifier: "npm" --- # npm Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/nuget.md b/versioned_docs/version-1.22/usage/packages/nuget.md index 8cd88e06..9118428d 100644 --- a/versioned_docs/version-1.22/usage/packages/nuget.md +++ b/versioned_docs/version-1.22/usage/packages/nuget.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "NuGet Package Registry" slug: "nuget" sidebar_position: 80 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "NuGet" - sidebar_position: 80 - identifier: "nuget" --- # NuGet Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/overview.md b/versioned_docs/version-1.22/usage/packages/overview.md index 89fc6f28..598a1577 100644 --- a/versioned_docs/version-1.22/usage/packages/overview.md +++ b/versioned_docs/version-1.22/usage/packages/overview.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "Package Registry" slug: "overview" sidebar_position: 1 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Overview" - sidebar_position: 1 - identifier: "packages-overview" --- # Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/pub.md b/versioned_docs/version-1.22/usage/packages/pub.md index e5e12de3..ebaa2346 100644 --- a/versioned_docs/version-1.22/usage/packages/pub.md +++ b/versioned_docs/version-1.22/usage/packages/pub.md @@ -1,16 +1,7 @@ --- date: "2022-07-31T00:00:00+00:00" -title: "Pub Package Registry" slug: "pub" sidebar_position: 90 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Pub" - sidebar_position: 90 - identifier: "pub" --- # Pub Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/pypi.md b/versioned_docs/version-1.22/usage/packages/pypi.md index be59df07..4f411f4e 100644 --- a/versioned_docs/version-1.22/usage/packages/pypi.md +++ b/versioned_docs/version-1.22/usage/packages/pypi.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "PyPI Package Registry" slug: "pypi" sidebar_position: 100 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "PyPI" - sidebar_position: 100 - identifier: "pypi" --- # PyPI Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/rpm.md b/versioned_docs/version-1.22/usage/packages/rpm.md index 1f93376b..cbd7ee8a 100644 --- a/versioned_docs/version-1.22/usage/packages/rpm.md +++ b/versioned_docs/version-1.22/usage/packages/rpm.md @@ -1,15 +1,6 @@ --- date: "2023-03-08T00:00:00+00:00" -title: "RPM Package Registry" slug: "rpm" -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "RPM" - sidebar_position: 105 - identifier: "rpm" --- # RPM Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/rubygems.md b/versioned_docs/version-1.22/usage/packages/rubygems.md index cb1a225b..379b9b83 100644 --- a/versioned_docs/version-1.22/usage/packages/rubygems.md +++ b/versioned_docs/version-1.22/usage/packages/rubygems.md @@ -1,16 +1,7 @@ --- date: "2021-07-20T00:00:00+00:00" -title: "RubyGems Package Registry" slug: "rubygems" sidebar_position: 110 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "RubyGems" - sidebar_position: 110 - identifier: "rubygems" --- # RubyGems Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/storage.md b/versioned_docs/version-1.22/usage/packages/storage.md index 3db44aaa..3cdcc778 100644 --- a/versioned_docs/version-1.22/usage/packages/storage.md +++ b/versioned_docs/version-1.22/usage/packages/storage.md @@ -1,16 +1,7 @@ --- date: "2022-11-01T00:00:00+00:00" -title: "Storage" slug: "storage" sidebar_position: 5 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Storage" - sidebar_position: 2 - identifier: "storage" --- # Storage diff --git a/versioned_docs/version-1.22/usage/packages/swift.md b/versioned_docs/version-1.22/usage/packages/swift.md index 38eb1556..505fd0a4 100644 --- a/versioned_docs/version-1.22/usage/packages/swift.md +++ b/versioned_docs/version-1.22/usage/packages/swift.md @@ -1,16 +1,7 @@ --- date: "2023-01-10T00:00:00+00:00" -title: "Swift Package Registry" slug: "swift" sidebar_position: 95 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Swift" - sidebar_position: 95 - identifier: "swift" --- # Swift Package Registry diff --git a/versioned_docs/version-1.22/usage/packages/vagrant.md b/versioned_docs/version-1.22/usage/packages/vagrant.md index baa9c2b8..8714dd1c 100644 --- a/versioned_docs/version-1.22/usage/packages/vagrant.md +++ b/versioned_docs/version-1.22/usage/packages/vagrant.md @@ -1,16 +1,7 @@ --- date: "2022-08-23T00:00:00+00:00" -title: "Vagrant Package Registry" slug: "vagrant" sidebar_position: 120 -draft: false -toc: false -menu: - sidebar: - parent: "packages" - name: "Vagrant" - sidebar_position: 120 - identifier: "vagrant" --- # Vagrant Package Registry diff --git a/versioned_docs/version-1.22/usage/permissions.md b/versioned_docs/version-1.22/usage/permissions.md index 1e0c6c0b..1ca67018 100644 --- a/versioned_docs/version-1.22/usage/permissions.md +++ b/versioned_docs/version-1.22/usage/permissions.md @@ -1,18 +1,9 @@ --- date: "2021-12-13:10:10+08:00" -title: "Permissions" slug: "permissions" sidebar_position: 14 -toc: false -draft: false aliases: - /en-us/permissions -menu: - sidebar: - parent: "usage" - name: "Permissions" - sidebar_position: 14 - identifier: "permissions" --- # Permissions diff --git a/versioned_docs/version-1.22/usage/profile-readme.md b/versioned_docs/version-1.22/usage/profile-readme.md index 316a735a..a0900476 100644 --- a/versioned_docs/version-1.22/usage/profile-readme.md +++ b/versioned_docs/version-1.22/usage/profile-readme.md @@ -1,16 +1,7 @@ --- date: "2023-03-02T21:00:00+05:00" -title: "Profile READMEs" slug: "profile-readme" sidebar_position: 12 -toc: false -draft: false -menu: - sidebar: - parent: "usage" - name: "Profile READMEs" - sidebar_position: 12 - identifier: "profile-readme" --- # Profile READMEs diff --git a/versioned_docs/version-1.22/usage/protected-tags.md b/versioned_docs/version-1.22/usage/protected-tags.md index b25cbdbb..86dbdf9d 100644 --- a/versioned_docs/version-1.22/usage/protected-tags.md +++ b/versioned_docs/version-1.22/usage/protected-tags.md @@ -1,18 +1,9 @@ --- date: "2021-05-14T00:00:00-00:00" -title: "Protected tags" slug: "protected-tags" sidebar_position: 45 -toc: false -draft: false aliases: - /en-us/protected-tags -menu: - sidebar: - parent: "usage" - name: "Protected tags" - sidebar_position: 45 - identifier: "protected-tags" --- # Protected tags diff --git a/versioned_docs/version-1.22/usage/pull-request.md b/versioned_docs/version-1.22/usage/pull-request.md index 0176d0af..94bdcf85 100644 --- a/versioned_docs/version-1.22/usage/pull-request.md +++ b/versioned_docs/version-1.22/usage/pull-request.md @@ -1,18 +1,9 @@ --- date: "2018-06-01T19:00:00+02:00" -title: "Pull Request" slug: "pull-request" sidebar_position: 13 -toc: false -draft: false aliases: - /en-us/pull-request -menu: - sidebar: - parent: "usage" - name: "Pull Request" - sidebar_position: 13 - identifier: "pull-request" --- # Pull Request diff --git a/versioned_docs/version-1.22/usage/push.md b/versioned_docs/version-1.22/usage/push.md index a8c87a46..75494647 100644 --- a/versioned_docs/version-1.22/usage/push.md +++ b/versioned_docs/version-1.22/usage/push.md @@ -3,17 +3,9 @@ date: "2020-07-06T16:00:00+02:00" title: "Push" slug: "push" sidebar_position: 15 -toc: false -draft: false aliases: - /en-us/push-to-create - /en-us/push-options -menu: - sidebar: - parent: "usage" - name: "Push" - sidebar_position: 15 - identifier: "push" --- There are some additional features when pushing commits to Gitea server. diff --git a/versioned_docs/version-1.22/usage/repo-mirror.md b/versioned_docs/version-1.22/usage/repo-mirror.md index 5e3dd21a..de0e0a1b 100644 --- a/versioned_docs/version-1.22/usage/repo-mirror.md +++ b/versioned_docs/version-1.22/usage/repo-mirror.md @@ -1,18 +1,9 @@ --- date: "2021-05-13T00:00:00-00:00" -title: "Repository Mirror" slug: "repo-mirror" sidebar_position: 45 -toc: false -draft: false aliases: - /en-us/repo-mirror -menu: - sidebar: - parent: "usage" - name: "Repository Mirror" - sidebar_position: 45 - identifier: "repo-mirror" --- # Repository Mirror diff --git a/versioned_docs/version-1.22/usage/template-repositories.md b/versioned_docs/version-1.22/usage/template-repositories.md index 8ce3cc03..8b452248 100644 --- a/versioned_docs/version-1.22/usage/template-repositories.md +++ b/versioned_docs/version-1.22/usage/template-repositories.md @@ -1,18 +1,9 @@ --- date: "2019-11-28:00:00+02:00" -title: "Template Repositories" slug: "template-repositories" sidebar_position: 14 -toc: false -draft: false aliases: - /en-us/template-repositories -menu: - sidebar: - parent: "usage" - name: "Template Repositories" - sidebar_position: 14 - identifier: "template-repositories" --- # Template Repositories diff --git a/versioned_docs/version-1.22/usage/webhooks.md b/versioned_docs/version-1.22/usage/webhooks.md index 3d92e109..82a87e60 100644 --- a/versioned_docs/version-1.22/usage/webhooks.md +++ b/versioned_docs/version-1.22/usage/webhooks.md @@ -1,18 +1,9 @@ --- date: "2016-12-01T16:00:00+02:00" -title: "Webhooks" slug: "webhooks" sidebar_position: 30 -toc: false -draft: false aliases: - /en-us/webhooks -menu: - sidebar: - parent: "usage" - name: "Webhooks" - sidebar_position: 30 - identifier: "webhooks" --- # Webhooks