gimmetool 0.1.3

A multi-repo manager that lets you jump between projects, pin favorites, clean stale branches, and alias repos — all from one CLI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod cli;
mod config;
mod path;
mod repo;
mod search;
mod setup;
mod xdg;

use clap::Parser;

fn main() {
  let cli = cli::Cli::parse();
  let mut cfg = config::load();
  cli::run(cli, &mut cfg);
}