git-meta-cli 0.1.0

Command-line tool for structured Git metadata (get/set, serialize, materialize, push/pull). Installs the `git-meta` binary.
//! End-to-end tests for git meta.
//!
//! These tests exercise the `git-meta` CLI binary against real git repositories,
//! verifying the full round-trip of metadata operations. The test harness
//! provides environment isolation and fixture-based repo setup inspired by
//! GitButler's `but-testsupport` crate.

#![allow(clippy::unwrap_used, clippy::expect_used)]

#[allow(dead_code)]
mod harness;

mod list;
mod materialize;
mod promisor;
mod push_pull;
mod remote;
mod serialize;
mod set_get;