gcd-cli 0.0.1

gcd-cli tools for managing and using GCD. GCD stands for GitChangeDirectory, as it primary goal is to quickly change between git project folders.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate clap;
extern crate console;
extern crate regex;
extern crate rusqlite;
extern crate glob;
extern crate indicatif;

pub mod inputhandler;
pub mod outputhandler;
pub mod scriptfile;
pub mod db;
pub mod projectsfinder;
pub mod config;
pub mod constants;