Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/competition_creation.md
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ file you want in the new version.

```bash
kaggle competitions data update <competition> -p <path> -m "<version notes>" \
[--rerun] [--include-hidden]
[--rerun] [--include-hidden] [--ignore-patterns <patterns>]
```

**Arguments:**
Expand All @@ -545,6 +545,7 @@ kaggle competitions data update <competition> -p <path> -m "<version notes>" \
sub-directories (names starting with `.` — e.g. `.DS_Store`, `.git/`,
`.gitignore`). Skipped by default so you don't accidentally publish OS
metadata or version-control detritus.
- `--ignore-patterns <patterns>` (optional): Patterns to ignore when uploading files/dirs. Can be specified multiple times. Note that default ignore patterns (like `.git/`, `.cache/`, `.huggingface/`) are bypassed when `--include-hidden` is True.

**Examples:**

Expand Down
4 changes: 4 additions & 0 deletions docs/datasets.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,8 @@ kaggle datasets create -p <FOLDER_PATH> [options]
* `-q, --quiet`: Suppress verbose output.
* `-t, --keep-tabular`: Do not convert tabular files to CSV (default is to convert).
* `-r, --dir-mode <MODE>`: How to handle directories: `skip` (ignore), `zip` (compressed upload), `tar` (uncompressed upload) (default: `skip`).
* `--ignore-patterns <PATTERNS>`: Patterns of files/dirs to ignore. Can be specified multiple times.


**Example:**

Expand Down Expand Up @@ -208,6 +210,8 @@ kaggle datasets version -p <FOLDER_PATH> -m <VERSION_NOTES> [options]
* `-t, --keep-tabular`: Do not convert tabular files to CSV.
* `-r, --dir-mode <MODE>`: Directory handling mode (`skip`, `zip`, `tar`).
* `-d, --delete-old-versions`: Delete old versions of this dataset.
* `--ignore-patterns <PATTERNS>`: Patterns of files/dirs to ignore. Can be specified multiple times.


**Example:**

Expand Down
2 changes: 2 additions & 0 deletions docs/model_variations.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ kaggle models variations create -p <FOLDER_PATH> [options]
* `-p, --path <FOLDER_PATH>`: Path to the folder containing the model variation files and the `model-instance-metadata.json` file (defaults to the current directory).
* `-q, --quiet`: Suppress verbose output.
* `-r, --dir-mode <MODE>`: How to handle directories within the upload: `skip` (ignore), `zip` (compressed upload), `tar` (uncompressed upload) (default: `skip`).
* `--ignore-patterns <PATTERNS>`: Patterns of files/dirs to ignore. Can be specified multiple times.


**Example:**

Expand Down
2 changes: 2 additions & 0 deletions docs/model_variations_versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ kaggle models variations versions create <MODEL_VARIATION> -p <FOLDER_PATH> [opt
* `-n, --version-notes <NOTES>`: Notes describing this version.
* `-q, --quiet`: Suppress verbose output.
* `-r, --dir-mode <MODE>`: How to handle directories within the upload: `skip` (ignore), `zip` (compressed upload), `tar` (uncompressed upload) (default: `skip`).
* `--ignore-patterns <PATTERNS>`: Patterns of files/dirs to ignore. Can be specified multiple times.


**Example:**

Expand Down
Loading