Skip to content

Commit 3477ff7

Browse files
locchhclaude
andcommitted
Update docs to use cex shorthand command
Replace all `commit-explorer` command references with `cex` in README.md and CLAUDE.md. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 7533549 commit 3477ff7

2 files changed

Lines changed: 12 additions & 15 deletions

File tree

CLAUDE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
99
uv sync
1010

1111
# Run the application
12-
uv run commit-explorer [owner/repo] [--depth N] [--export]
12+
uv run cex [owner/repo] [--depth N] [--export]
1313

1414
# Examples
15-
uv run commit-explorer # Interactive mode
16-
uv run commit-explorer torvalds/linux --depth 100
17-
uv run commit-explorer owner/repo --export # Print graph to stdout
15+
uv run cex # Interactive mode
16+
uv run cex torvalds/linux --depth 100
17+
uv run cex owner/repo --export # Print graph to stdout
1818
```
1919

2020
## Architecture

README.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,36 +19,33 @@ A terminal UI for exploring git repository history. Clones repositories directly
1919
## Quick Start
2020

2121
```bash
22-
uvx --from git+https://github.com/locchh/commit-explorer commit-explorer textualize/textual
22+
uvx --from git+https://github.com/locchh/commit-explorer cex textualize/textual
2323
```
2424

25-
26-
2725
Or clone and run locally:
2826

2927
```bash
3028
git clone https://github.com/locchh/commit-explorer
3129
cd commit-explorer
3230
uv sync
33-
uv run commit-explorer textualize/textual
31+
uv run cex textualize/textual
3432
```
3533

36-
Or:
37-
34+
Or (bypass SSL for corporate proxies):
3835

3936
```bash
40-
GIT_SSL_NO_VERIFY=1 uvx --from git+https://github.com/locchh/commit-explorer commit-explorer textualize/textual
37+
GIT_SSL_NO_VERIFY=1 uvx --from git+https://github.com/locchh/commit-explorer cex textualize/textual
4138
```
4239

4340

4441

4542
## Usage
4643

4744
```bash
48-
uv run commit-explorer # open the UI, enter repo manually
49-
uv run commit-explorer owner/repo # pre-load a repository
50-
uv run commit-explorer owner/repo --depth 100 # limit to last 100 commits
51-
uv run commit-explorer owner/repo --export # print graph to stdout and exit
45+
uv run cex # open the UI, enter repo manually
46+
uv run cex owner/repo # pre-load a repository
47+
uv run cex owner/repo --depth 100 # limit to last 100 commits
48+
uv run cex owner/repo --export # print graph to stdout and exit
5249
```
5350

5451
**Keyboard shortcuts:** `r` reload · `n` next page · `q` quit

0 commit comments

Comments
 (0)