Production-ready VCS and orchestration engine for DX tools with Git-like versioning, dual-watcher architecture, traffic branch system, and component injection
useanyhow::Result;usestd::path::Path;pub async fnsync_with_git(path:&Path)->Result<()>{// Check if Forge is already initialized
if path.join(".dx").exists(){println!("✓ Forge repository already exists.");returnOk(());}println!("🔄 Initializing Forge repository...");// Initialize Forge repository
crate::storage::init(path).await?;println!("✓ Forge repository initialized successfully.");println!("💡 You can now use Forge for operation-level version control.");Ok(())}