改成强制

This commit is contained in:
fanshuai 2024-09-20 16:42:30 +08:00
parent 632de0748e
commit afb2928ac7
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}