From 92994237118ca0d09acbf7537221b67880377ac5 Mon Sep 17 00:00:00 2001 From: Andriy Vlonha Date: Wed, 21 Jan 2026 11:17:02 +0200 Subject: [PATCH] docs: update dvc commit interactive prompt options Added the skip (s) option to the usage example. --- content/docs/command-reference/commit.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/docs/command-reference/commit.md b/content/docs/command-reference/commit.md index 30aaa03985..4a605653bf 100644 --- a/content/docs/command-reference/commit.md +++ b/content/docs/command-reference/commit.md @@ -273,11 +273,12 @@ $ git commit -m "CHANGED" $ dvc commit dependencies ['src/train.py'] of 'train.dvc' changed. -Are you sure you commit it? [y/n] y +Are you sure you want to commit it? [y/n/s] y $ dvc status Data and pipelines are up to date. ``` +The interactive prompt allows you to confirm (`y`), abort (`n`), or skip the current stage (`s`) to proceed to the next one. Instead of reproducing the pipeline for changes that do not produce different results, just use `commit` on both Git and DVC.