giffstack 0.2.0

Stacked diffs for GitHub. CLI for managing chains/trees of dependent PRs.
1
2
3
4
5
6
7
8
9
use crate::config::GlobalConfig;
use anyhow::Result;

pub fn run() -> Result<()> {
    let cfg = GlobalConfig::default();
    cfg.write()?;
    println!("giff initialized. Edit ~/.config/giff/config.toml to add your GitHub token.");
    Ok(())
}