diff options
author | KN4CK3R <admin@oldschoolhack.me> | 2022-04-26 22:30:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-26 16:30:51 -0400 |
commit | e4274f640ccf63b26adf409c9bc14897610fb81a (patch) | |
tree | d778cc5f59ca99407450951673b64fbd8edce12f /docs | |
parent | 6dd36379f24142198671e7c3f0ae44c3f579d21d (diff) | |
download | gitea-e4274f640ccf63b26adf409c9bc14897610fb81a.tar.gz gitea-e4274f640ccf63b26adf409c9bc14897610fb81a.zip |
Allow package dump skipping (#19506)
* Added addReader to support verbose.
* Allow skipping packages.
* Updated docs.
* Update cmd/dump.go
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/usage/command-line.en-us.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/content/doc/usage/command-line.en-us.md b/docs/content/doc/usage/command-line.en-us.md index 3b75a5c843..8cc420ed11 100644 --- a/docs/content/doc/usage/command-line.en-us.md +++ b/docs/content/doc/usage/command-line.en-us.md @@ -313,8 +313,13 @@ in the current directory. - `--tempdir path`, `-t path`: Path to the temporary directory used. Optional. (default: /tmp). - `--skip-repository`, `-R`: Skip the repository dumping. Optional. - `--skip-custom-dir`: Skip dumping of the custom dir. Optional. + - `--skip-lfs-data`: Skip dumping of LFS data. Optional. + - `--skip-attachment-data`: Skip dumping of attachment data. Optional. + - `--skip-package-data`: Skip dumping of package data. Optional. + - `--skip-log`: Skip dumping of log data. Optional. - `--database`, `-d`: Specify the database SQL syntax. Optional. - `--verbose`, `-V`: If provided, shows additional details. Optional. + - `--type`: Set the dump output format. Optional. (default: zip) - Examples: - `gitea dump` - `gitea dump --verbose` |