···6565 Text("When enabled, you choose the branch name and where it branches from before creating the worktree.")
6666 .foregroundStyle(.secondary)
6767 }
6868+ VStack(alignment: .leading) {
6969+ Toggle(
7070+ "Fetch remote before creating worktree",
7171+ isOn: $store.fetchRemoteBeforeWorktreeCreation
7272+ )
7373+ .help("Runs git fetch <remote> before creating a worktree.")
7474+ Text("Keeps remote-tracking base branches current. Fetch failures are logged and creation continues.")
7575+ .foregroundStyle(.secondary)
7676+ }
6877 }
6978 }
7079 .formStyle(.grouped)