gitea [global options] command [command options] [arguments...]
--help, -h: Show help text and exit. Optional. This can be used with any of the--version, -v: Show version and exit. Optional. (example: Gitea version 1.1.0+218-g7b907ed built with: bindata, sqlite).Starts the server:
--port number, -p number: Port number. Optional. (default: 3000). Overrides configuration file.--config path, -c path: Gitea configuration file path. Optional. (default: custom/conf/app.ini).--pid path, -P path: Pidfile path. Optional.gitea webgitea web --port 80gitea web --config /etc/gitea.ini --pid /var/run/gitea.pidsudo setcap 'cap_net_bind_service=+ep' /path/to/gitea. This will need to beAdmin operations:
create-user
--name value: Username. Required.--password value: Password. Required.--email value: Email. Required.--admin: If provided, this makes the user an admin. Optional.--config path: Gitea configuration file path. Optional. (default: custom/conf/app.ini).gitea admin create-user --name myname --password asecurepassword --email me@example.comchange-password
--username value, -u value: Username. Required.--password value, -p value: New password. Required.gitea admin change-password --username myname --password asecurepasswordGenerates a self-signed SSL certificate. Outputs to cert.pem and key.pem in the current
directory and will overwrite any existing files.
--host value: Comma seperated hostnames and ips which this certificate is valid for.--ecdsa-curve value: ECDSA curve to use to generate a key. Optional. Valid options--rsa-bits value: Size of RSA key to generate. Optional. Ignored if --ecdsa-curve is--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.gitea cert --host git.example.com,example.com,www.example.com --caDumps all files and databases into a zip file. Outputs into a file like gitea-dump-1482906742.zip
in the current directory.
--config path, -c path: Gitea configuration file path. Optional. (default: custom/conf/app.ini).--tempdir path, -t path: Path to the temporary directory used. Optional. (default: /tmp).--verbose, -v: If provided, shows additional details. Optional.gitea dumpgitea dump --verboseGenerates random values and tokens for usage in configuration file. Useful for generating values
for automatic deployments.
secret:
INTERNAL_TOKEN: Token used for an internal API call authentication.LFS_JWT_SECRET: LFS authentication secret.SECRET_KEY: Global secret key.gitea generate secret INTERNAL_TOKENgitea generate secret LFS_JWT_SECRETgitea generate secret SECRET_KEY