grm 0.7.5

Manage multiple git repositories. You configure the git repositories in a file, the program does the rest!
Documentation
1
2
3
4
5
6
7
8
9
10
11
use tempdir::TempDir;

pub fn init_tmpdir() -> TempDir {
    let tmp_dir = TempDir::new("grm-test").unwrap();
    println!("Temporary directory: {}", tmp_dir.path().display());
    tmp_dir
}

pub fn cleanup_tmpdir(tempdir: TempDir) {
    tempdir.close().unwrap();
}