Extracts git repository information.
This library main goal is to provide development/build tools such as cargo-makethe needed information on the current git repository.
Simply include the library and invoke the get function to pull all info as follows:
```rust extern crate git_info;
fn main() { let info = git_info::get();
println!("User Name: {}", info.user_name.unwrap());
println!("User Email: {}", info.user_email.unwrap());
println!("Current Branch: {}", info.current_branch.unwrap());
println!("Config: {:#?}", info.config.unwrap());
println!("Branches: {:#?}", info.branches.unwrap());
} ```
In order to use this library, just add it as a dependency:
ini
[dependencies]
git_info = "*"
See full docs at: API Docs
See Changelog
Developed by Sagie Gur-Ari and licensed under the Apache 2 open source license.