git-global 0.7.0

Keep track of all the git repositories on your machine.
Documentation
1
2
3
4
5
6
7
8
//! Entry point for the binary.

use std::process::exit;

/// Runs git-global from the command line, exiting with its return value.
fn main() {
    exit(git_global::run_from_command_line())
}