add ent sync #12

Merged
seb merged 3 commits from ent-sync into main 2025-07-08 12:25:06 -06:00
Showing only changes of commit 2106c69271 - Show all commits

View file

@ -180,6 +180,7 @@ fn handle_command(args: &Args, issues_dir: &std::path::Path) -> anyhow::Result<(
None => "entomologist-data", None => "entomologist-data",
}; };
entomologist::git::sync(issues_dir, remote, branch)?; entomologist::git::sync(issues_dir, remote, branch)?;
println!("synced {:?} with {:?}", branch, remote);
} }
} }