gmap 0.3.0

Git repository analysis tool for churn and heatmap visualization
Documentation
# gmap


> A fast CLI tool to explore Git activity — churn, heatmaps, authorship, and more.

[![Crates.io](https://img.shields.io/crates/v/gmap.svg)](https://crates.io/crates/gmap)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)

---

## Installation


```sh
cargo install gmap
````

---

## Usage


```sh
Usage: gmap [OPTIONS] <COMMAND>

Commands:
  churn
  heat
  export
  help    Print this message or the help of the given subcommand(s)

Options:
      --repo <REPO>     Path to git repository
      --cache <CACHE>   Path to cache database
      --include-merges  Include merge commits
      --binary          Include binary files
      --since <SINCE>   Start from this commit or date (RFC3339, YYYY-MM-DD, or natural language)
      --until <UNTIL>   End at this commit or date (RFC3339, YYYY-MM-DD, or natural language)
  -h, --help            Print help
  -V, --version         Print version
```

## TUI Mode


Launch the terminal UI:
```bash
gmap heat --tui
```

Keybindings:

* `← →` Navigate views
* `/` Search
* `Esc` Exit search
* `Tab` Switch view
* `h` Help overlay

---

## Screenshot


![TUI Heatmap](assets/tui-heatmap-preview.png)

---