Metadata-Version: 2.4
Name: gitgenius
Version: 0.1.1
Summary: GitGenius CLI - Understand Git errors in plain English
Author: Selva Neyas U
Author-email: selvaneyas@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console
Classifier: Topic :: Software Development :: Version Control :: Git
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: GitPython==3.1.32
Requires-Dist: gitdb==4.0.10
Requires-Dist: rich==13.7.1
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

![](assert/2.png)
# 🧠 GitGenius CLI
> Understand Git errors in plain English – directly from your terminal.


# gitgenius

[![PyPI version](https://img.shields.io/pypi/v/gitgenius)](https://pypi.org/project/gitgenius/)
[![Python versions](https://img.shields.io/pypi/pyversions/gitgenius)](https://pypi.org/project/gitgenius/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![GitHub stars](https://img.shields.io/github/stars/selvaneyas/gitgenius.svg?style=social)](https://github.com/selvaneyas/gitgenius)
[![Issues](https://img.shields.io/github/issues/selvaneyas/gitgenius.svg)](https://github.com/selvaneyas/gitgenius/issues)
[![Last Commit](https://img.shields.io/github/last-commit/selvaneyas/gitgenius)](https://github.com/selvaneyas/gitgenius/commits/main)

GitGenius is a simple command-line tool that explains Git errors in friendly, understandable language.

# GitGenius CLI 🔍
## 📦 Installation
```bash
pip install .
```

## 🚀 Usage
```bash
gitgenius "fatal: not a git repository"
```

## ✅ Output
```
Explanation: This error means you're trying to run a Git command outside a Git repository.
```

## 🧪 Run Tests
```bash
python3 -m unittest discover tests
```
