This commit is contained in:
2025-11-22 17:20:33 +08:00
parent 94a04e53fb
commit 79e949f4c3

View File

@@ -87,7 +87,7 @@ def sync_repository(repo_config):
# 克隆目标仓库
print(f"\n[1/6] 克隆目标仓库...")
result = subprocess.run(
['git', 'clone', '--bare', target_url, work_dir],
['git', 'clone', target_url, work_dir],
capture_output=True, text=True, timeout=300
)
if result.returncode != 0: