gitc 0.1.4

A command line tool to help you clone git repositories with http url or even with branch.
1
2
3
4
5
use std::process::{ Command, Output };

pub fn run_git(args: Vec<String>) -> Output {
  Command::new("git").args(args).output().unwrap()
}