2017-11-26 22:44:32 +01:00
|
|
|
---
|
|
|
|
date: "2017-01-01T16:00:00+02:00"
|
|
|
|
title: "Usage: Command Line"
|
|
|
|
slug: "command-line"
|
|
|
|
weight: 10
|
|
|
|
toc: true
|
|
|
|
draft: false
|
|
|
|
menu:
|
|
|
|
sidebar:
|
|
|
|
parent: "usage"
|
|
|
|
name: "Command Line"
|
|
|
|
weight: 10
|
|
|
|
identifier: "command-line"
|
|
|
|
---
|
|
|
|
|
|
|
|
## Command Line
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
2019-04-29 20:08:21 +02:00
|
|
|
`gitea [global options] command [command or global options] [arguments...]`
|
2017-11-26 22:44:32 +01:00
|
|
|
|
|
|
|
### Global options
|
2019-04-29 20:08:21 +02:00
|
|
|
|
|
|
|
All global options can be placed at the command level.
|
|
|
|
|
|
|
|
- `--help`, `-h`: Show help text and exit. Optional.
|
|
|
|
- `--version`, `-v`: Show version and exit. Optional. (example: `Gitea version 1.1.0+218-g7b907ed built with: bindata, sqlite`).
|
|
|
|
- `--custom-path path`, `-C path`: Location of the Gitea custom folder. Optional. (default: $PWD/custom).
|
|
|
|
- `--config path`, `-c path`: Gitea configuration file path. Optional. (default: custom/conf/app.ini).
|
2017-11-26 22:44:32 +01:00
|
|
|
|
|
|
|
### Commands
|
|
|
|
|
|
|
|
#### web
|
2018-01-08 23:48:42 +01:00
|
|
|
|
|
|
|
Starts the server:
|
|
|
|
|
2017-11-26 22:44:32 +01:00
|
|
|
- Options:
|
|
|
|
- `--port number`, `-p number`: Port number. Optional. (default: 3000). Overrides configuration file.
|
|
|
|
- `--pid path`, `-P path`: Pidfile path. Optional.
|
|
|
|
- Examples:
|
|
|
|
- `gitea web`
|
|
|
|
- `gitea web --port 80`
|
|
|
|
- `gitea web --config /etc/gitea.ini --pid /var/run/gitea.pid`
|
|
|
|
- Notes:
|
2018-01-08 23:48:42 +01:00
|
|
|
- Gitea should not be run as root. To bind to a port below 1000, you can use setcap on
|
|
|
|
Linux: `sudo setcap 'cap_net_bind_service=+ep' /path/to/gitea`. This will need to be
|
|
|
|
redone every time you update Gitea.
|
2017-11-26 22:44:32 +01:00
|
|
|
|
|
|
|
#### admin
|
2018-01-08 23:48:42 +01:00
|
|
|
|
|
|
|
Admin operations:
|
|
|
|
|
2017-11-26 22:44:32 +01:00
|
|
|
- Commands:
|
|
|
|
- `create-user`
|
2019-01-09 18:52:10 +01:00
|
|
|
- Options:
|
2019-04-09 17:21:55 +02:00
|
|
|
- `--name value`: Username. Required. As of gitea 1.9.0, use the `--username` flag instead.
|
|
|
|
- `--username value`: Username. Required. New in gitea 1.9.0.
|
2017-11-26 22:44:32 +01:00
|
|
|
- `--password value`: Password. Required.
|
|
|
|
- `--email value`: Email. Required.
|
|
|
|
- `--admin`: If provided, this makes the user an admin. Optional.
|
2019-01-09 18:52:10 +01:00
|
|
|
- `--must-change-password`: If provided, the created user will be required to choose a newer password after
|
2019-02-10 23:10:00 +01:00
|
|
|
the initial login. Optional. (default: true).
|
2019-01-09 18:52:10 +01:00
|
|
|
- ``--random-password``: If provided, a randomly generated password will be used as the password of
|
|
|
|
the created user. The value of `--password` will be discarded. Optional.
|
|
|
|
- `--random-password-length`: If provided, it will be used to configure the length of the randomly
|
|
|
|
generated password. Optional. (default: 12)
|
2017-11-26 22:44:32 +01:00
|
|
|
- Examples:
|
2019-04-09 17:21:55 +02:00
|
|
|
- `gitea admin create-user --username myname --password asecurepassword --email me@example.com`
|
2017-11-26 22:44:32 +01:00
|
|
|
- `change-password`
|
2018-01-08 23:48:42 +01:00
|
|
|
- Options:
|
2017-11-26 22:44:32 +01:00
|
|
|
- `--username value`, `-u value`: Username. Required.
|
|
|
|
- `--password value`, `-p value`: New password. Required.
|
|
|
|
- Examples:
|
|
|
|
- `gitea admin change-password --username myname --password asecurepassword`
|
2018-05-17 03:35:07 +02:00
|
|
|
- `regenerate`
|
|
|
|
- Options:
|
|
|
|
- `hooks`: Regenerate git-hooks for all repositories
|
|
|
|
- `keys`: Regenerate authorized_keys file
|
|
|
|
- Examples:
|
|
|
|
- `gitea admin regenerate hooks`
|
|
|
|
- `gitea admin regenerate keys`
|
2018-09-12 16:46:02 +02:00
|
|
|
- `auth`:
|
|
|
|
- `list`:
|
|
|
|
- Description: lists all external authentication sources that exist
|
|
|
|
- Examples:
|
2019-03-29 13:16:07 +01:00
|
|
|
- `gitea admin auth list`
|
2018-09-12 16:46:02 +02:00
|
|
|
- `delete`:
|
|
|
|
- Options:
|
|
|
|
- `--id`: ID of source to be deleted. Required.
|
|
|
|
- Examples:
|
2019-03-29 13:16:07 +01:00
|
|
|
- `gitea admin auth delete --id 1`
|
2018-09-12 16:46:02 +02:00
|
|
|
- `add-oauth`:
|
|
|
|
- Options:
|
|
|
|
- `--name`: Application Name.
|
|
|
|
- `--provider`: OAuth2 Provider.
|
|
|
|
- `--key`: Client ID (Key).
|
|
|
|
- `--secret`: Client Secret.
|
|
|
|
- `--auto-discover-url`: OpenID Connect Auto Discovery URL (only required when using OpenID Connect as provider).
|
|
|
|
- `--use-custom-urls`: Use custom URLs for GitLab/GitHub OAuth endpoints.
|
|
|
|
- `--custom-auth-url`: Use a custom Authorization URL (option for GitLab/GitHub).
|
|
|
|
- `--custom-token-url`: Use a custom Token URL (option for GitLab/GitHub).
|
|
|
|
- `--custom-profile-url`: Use a custom Profile URL (option for GitLab/GitHub).
|
|
|
|
- `--custom-email-url`: Use a custom Email URL (option for GitHub).
|
|
|
|
- Examples:
|
2019-03-29 13:16:07 +01:00
|
|
|
- `gitea admin auth add-oauth --name external-github --provider github --key OBTAIN_FROM_SOURCE --secret OBTAIN_FROM_SOURCE`
|
2018-09-12 16:46:02 +02:00
|
|
|
- `update-oauth`:
|
|
|
|
- Options:
|
|
|
|
- `--id`: ID of source to be updated. Required.
|
|
|
|
- `--name`: Application Name.
|
|
|
|
- `--provider`: OAuth2 Provider.
|
|
|
|
- `--key`: Client ID (Key).
|
|
|
|
- `--secret`: Client Secret.
|
|
|
|
- `--auto-discover-url`: OpenID Connect Auto Discovery URL (only required when using OpenID Connect as provider).
|
|
|
|
- `--use-custom-urls`: Use custom URLs for GitLab/GitHub OAuth endpoints.
|
|
|
|
- `--custom-auth-url`: Use a custom Authorization URL (option for GitLab/GitHub).
|
|
|
|
- `--custom-token-url`: Use a custom Token URL (option for GitLab/GitHub).
|
|
|
|
- `--custom-profile-url`: Use a custom Profile URL (option for GitLab/GitHub).
|
|
|
|
- `--custom-email-url`: Use a custom Email URL (option for GitHub).
|
|
|
|
- Examples:
|
2019-03-29 13:16:07 +01:00
|
|
|
- `gitea admin auth update-oauth --id 1 --name external-github-updated`
|
2017-11-26 22:44:32 +01:00
|
|
|
|
|
|
|
#### cert
|
2018-01-08 23:48:42 +01:00
|
|
|
|
|
|
|
Generates a self-signed SSL certificate. Outputs to `cert.pem` and `key.pem` in the current
|
|
|
|
directory and will overwrite any existing files.
|
|
|
|
|
2017-11-26 22:44:32 +01:00
|
|
|
- Options:
|
2018-01-08 23:48:42 +01:00
|
|
|
- `--host value`: Comma seperated hostnames and ips which this certificate is valid for.
|
|
|
|
Wildcards are supported. Required.
|
|
|
|
- `--ecdsa-curve value`: ECDSA curve to use to generate a key. Optional. Valid options
|
|
|
|
are P224, P256, P384, P521.
|
|
|
|
- `--rsa-bits value`: Size of RSA key to generate. Optional. Ignored if --ecdsa-curve is
|
|
|
|
set. (default: 2048).
|
2017-11-26 22:44:32 +01:00
|
|
|
- `--start-date value`: Creation date. Optional. (format: `Jan 1 15:04:05 2011`).
|
|
|
|
- `--duration value`: Duration which the certificate is valid for. Optional. (default: 8760h0m0s)
|
|
|
|
- `--ca`: If provided, this cert generates it's own certificate authority. Optional.
|
|
|
|
- Examples:
|
|
|
|
- `gitea cert --host git.example.com,example.com,www.example.com --ca`
|
|
|
|
|
|
|
|
#### dump
|
2018-01-08 23:48:42 +01:00
|
|
|
|
|
|
|
Dumps all files and databases into a zip file. Outputs into a file like `gitea-dump-1482906742.zip`
|
|
|
|
in the current directory.
|
|
|
|
|
2017-11-26 22:44:32 +01:00
|
|
|
- Options:
|
2019-04-01 06:31:37 +02:00
|
|
|
- `--file name`, `-f name`: Name of the dump file with will be created. Optional. (default: gitea-dump-[timestamp].zip).
|
2017-11-26 22:44:32 +01:00
|
|
|
- `--tempdir path`, `-t path`: Path to the temporary directory used. Optional. (default: /tmp).
|
2019-01-13 22:52:26 +01:00
|
|
|
- `--skip-repository`, `-R`: Skip the repository dumping. Optional.
|
|
|
|
- `--database`, `-d`: Specify the database SQL syntax. Optional.
|
2019-05-01 22:36:09 +02:00
|
|
|
- `--verbose`, `-V`: If provided, shows additional details. Optional.
|
2017-11-26 22:44:32 +01:00
|
|
|
- Examples:
|
|
|
|
- `gitea dump`
|
|
|
|
- `gitea dump --verbose`
|
2018-02-19 04:23:41 +01:00
|
|
|
|
|
|
|
#### generate
|
|
|
|
|
|
|
|
Generates random values and tokens for usage in configuration file. Useful for generating values
|
|
|
|
for automatic deployments.
|
|
|
|
|
|
|
|
- Commands:
|
|
|
|
- `secret`:
|
|
|
|
- Options:
|
|
|
|
- `INTERNAL_TOKEN`: Token used for an internal API call authentication.
|
|
|
|
- `LFS_JWT_SECRET`: LFS authentication secret.
|
|
|
|
- `SECRET_KEY`: Global secret key.
|
|
|
|
- Examples:
|
|
|
|
- `gitea generate secret INTERNAL_TOKEN`
|
|
|
|
- `gitea generate secret LFS_JWT_SECRET`
|
|
|
|
- `gitea generate secret SECRET_KEY`
|
2018-11-01 14:41:07 +01:00
|
|
|
|
|
|
|
#### keys
|
|
|
|
|
|
|
|
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
|
|
|
|
AuthorizedKeysCommand /path/to/gitea keys -e git -u %u -t %t -k %k
|
|
|
|
```
|
|
|
|
|
|
|
|
The command will return the appropriate authorized_keys line for the
|
|
|
|
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
|
|
|
|
writable by group or others. The program must be specified by an absolute
|
|
|
|
path.
|