git-filter-tree 0.3.1

Filter and write trees in Git's object database.
Documentation
1
2
3
4
5
6
7
8
9
10
use clap::Parser;
use git_filter_tree::exe::FilterTreeArgs;

#[derive(Parser)]
#[command(name = "git filter-tree", bin_name = "git filter-tree")]
#[command(author, version, about = "Filter Git tree entries by glob patterns")]
pub struct Cli {
    #[command(flatten)]
    pub args: FilterTreeArgs,
}