diff --git a/ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/utils/DVCUtils.java b/ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/utils/DVCUtils.java index 20350123..c46ef958 100644 --- a/ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/utils/DVCUtils.java +++ b/ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/utils/DVCUtils.java @@ -603,14 +603,14 @@ public class DVCUtils { // 强制刷新 dvcPull 方法 public void dvcPull(String localPath) throws Exception { - String command = "dvc pull --force"; + String command = "dvc pull -v --force"; runCommand(command, localPath); } // 方法 public void dvcCheckout(String localPath) throws Exception { - String command = "dvc checkout"; + String command = "dvc checkout -v --force"; runCommand(command, localPath); }