hg-git-fast-import 1.5.0

A utility to import single and multiple Mercurial repositories to Git.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::{Deserialize, Serialize};

use std::collections::HashMap;

#[derive(Debug, Deserialize, Serialize)]
pub struct Environment {
    pub no_clean_closed_branches: bool,
    pub authors: Option<HashMap<String, String>>,
    pub clean: bool,
    pub cron: bool,
    pub target_push: bool,
    pub target_pull: bool,
    pub source_pull: bool,
    pub fix_wrong_branchname: bool,
}