From d131097eb6fb4d801a7c71c3df98190c2a3ce811 Mon Sep 17 00:00:00 2001 From: Ruslan Kuprieiev Date: Tue, 17 Mar 2020 18:18:39 +0200 Subject: [PATCH] unprotect: adjust help message https://github.com/iterative/dvc.org/pull/1058/files/21aab371a487acf6f6e6201b29cd832e7c55ed23#r393324668 --- dvc/command/unprotect.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dvc/command/unprotect.py b/dvc/command/unprotect.py index eb6dc88760..e9c5df81a9 100644 --- a/dvc/command/unprotect.py +++ b/dvc/command/unprotect.py @@ -22,7 +22,10 @@ def run(self): def add_parser(subparsers, parent_parser): - UNPROTECT_HELP = "Unprotect data files or directories." + UNPROTECT_HELP = ( + "Unprotect tracked files or directories (when hardlinks or symlinks " + "have been enabled with `dvc config cache.type`)" + ) unprotect_parser = subparsers.add_parser( "unprotect", parents=[parent_parser],