commit_info 0.1.1

Gather relevant commit and status information from git repos.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
This crate gathers relevant git info from any Repo. Some of the info returned includes:
- **Git status info**: Checks if a repo is dirty, has been modified and so on.
- **Commits**: Gathers and shows information for the last 10 commits

## Example

```rust

 let dir = "/path/to/repo"; //<- Point to the location of t=your repo
 let info = Info::new(&dir).status_info()?.commit_info()?;
 println("{:#?}", info);

```