Metadata-Version: 2.4
Name: octotui
Version: 0.1.15
Summary: A blazing-fast TUI replacement for GitKraken - manage your Git repos with style!
Project-URL: Repository, https://github.com/never-use-gui/octotui
Project-URL: Homepage, https://github.com/never-use-gui/octotui
Project-URL: Bug Tracker, https://github.com/never-use-gui/octotui/issues
Author-email: Michael Pfaffenberger <michael@pfaffenberger.dev>
License: MIT
Keywords: git,gitkraken,terminal,textual,tui,version-control
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Version Control :: Git
Classifier: Topic :: Terminals
Requires-Python: >=3.11
Requires-Dist: gac>=3.12.0
Requires-Dist: gitpython>=3.1.42
Requires-Dist: pyfiglet>=1.0.2
Requires-Dist: textual>=6.1.0
Description-Content-Type: text/markdown

<div align="center">

<img src="cute-octo.png" alt="OctoTUI Logo" width="300">

# OctoTUI

[![PyPI version](https://img.shields.io/pypi/v/octotui.svg)](https://pypi.org/project/octotui/)
[![Python](https://img.shields.io/pypi/pyversions/octotui.svg)](https://pypi.org/project/octotui/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Code style: ruff](https://img.shields.io/badge/code%20style-ruff-000000.svg)](https://github.com/astral-sh/ruff)

**A terminal UI for Git, inspired by GitKraken**

[Installation](#installation) • [Screenshots](#screenshots)

</div>

---

![OctoTUI Demo](octotui.gif)

OctoTUI brings a GitKraken-like experience to your terminal. Visual diffs, hunk-level staging, branch management, commit history—all without leaving the command line.

### Features

- Visual diffs with syntax highlighting
- Hunk-level staging/unstaging
- Branch visualization and management
- Commit history browsing
- AI-powered commit messages (via [GAC](https://github.com/cellwebb/gac))
- 100% free and open source

---

## Screenshots

### Status Tab
Repository status at a glance: branch, remote tracking, sync status (ahead/behind), working tree operations.

![Status Tab](screenshots/octotui_status.png)

### Files Tab
Browse your repository with a tree view. Press `e` to open files in your editor.

![Files Tab](screenshots/octotui_files.png)

### Unstaged Changes
Review unstaged changes with syntax-highlighted diffs. Stage or discard individual hunks.

![Unstaged Tab](screenshots/octotui_unstaged.png)

### Staged Changes
See what's going into your next commit. Unstage hunks if needed.

![Staged Tab](screenshots/octotui_staged.png)

### Commit Tab
Write commit messages with subject and body, or generate them with AI.

![Commit Tab](screenshots/octotui_commit.png)

### Settings Tab
Configure your editor, theme, and AI provider. Supports 30+ providers including OpenAI, Anthropic, and Ollama.

![Settings Tab](screenshots/octotui_settings1.png)
![Settings Tab - GAC Config](screenshots/octotui_settings2.png)

---

## Installation

### Quick Start

```bash
uvx octotui
```

### From Source

```bash
git clone https://github.com/never-use-gui/octotui.git
cd octotui
uv run octotui
```

### Requirements

- Python 3.11+
- Git
- Terminal with 256+ colors

---

## Profiling & Debugging

If OctoTUI is slow on large repositories, enable profiling to identify bottlenecks:

```bash
# Enable profiling (logs to ~/.octotui_profile.log)
OCTOTUI_PROFILE=1 uv run octotui /path/to/big/repo

# Use a custom log file
OCTOTUI_PROFILE=1 OCTOTUI_PROFILE_LOG=/tmp/profile.log uv run octotui
```

After using the app, check the profile log for a summary of slow functions:

```bash
cat ~/.octotui_profile.log | tail -30
```

The summary shows function call counts, total time, average time, and min/max times—sorted by total time (slowest first).

---

## Tech Stack

- [Textual](https://textual.textualize.io/) - TUI framework
- [GitPython](https://gitpython.readthedocs.io/) - Git operations
- [GAC](https://github.com/cellwebb/gac) - AI commit generation

## License

MIT - see [LICENSE](LICENSE)
