From 3a568a774a2ef43a0272167705c080b9751b9e07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 6 Oct 2022 12:59:54 +0200 Subject: [PATCH] Remove init_worktree from sync config It was currently unused and only confuses. The initialization of worktrees can currently only be controlled via the `--init-worktree` command line switch. This is unfortunate, but it's the only was to handle it right now. Changing it would mean a restructure of the code, mainly the `tree::sync_trees` function. --- src/config.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 2858050..360f203 100644 --- a/src/config.rs +++ b/src/config.rs @@ -52,7 +52,6 @@ pub struct ConfigProvider { pub api_url: Option, pub worktree: Option, - pub init_worktree: Option, pub remote_name: Option, }