git-retime 0.1.1

Rewrite git commit time in history
Documentation
1
2
3
4
5
6
7
8
use clap::Parser;
use git2::Error;
use git_retime::GitTimeTravel;

pub fn main() -> Result<(), Error> {
    let app = GitTimeTravel::parse();
    app.run()
}