feat: migrate out of the flat store layout

This commit is contained in:
2026-09-21 13:06:54 +00:00
parent 22d735d52c
commit a6a4b033a7
5 changed files with 163 additions and 11 deletions

View File

@@ -19,6 +19,15 @@ pub enum Link {
/// List untracked paths a sandbox would still see
Check(Check),
/// Move this checkout's paths from the old store layout into its own directory
Migrate(Migrate),
}
#[derive(Args, Debug)]
pub struct Migrate {
#[command(flatten)]
pub store: Store,
}
#[derive(Args, Debug)]