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