giff 0.1.0

Visualizes the differences between the current HEAD and a specified branch in a git repository using a formatted table output in your terminal. The differences are displayed with color-coded additions and deletions for better readability.
1
2
3
4
5
6
7
8
use clap::Parser;

#[derive(Parser)]
#[command(author="bahdotsh", version, about, long_about = None)]
pub struct Args {
    #[arg(short, long, default_value = "main")]
    pub branch: String,
}