File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,12 +9,12 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
99uv 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
Original file line number Diff line number Diff 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-
2725Or clone and run locally:
2826
2927``` bash
3028git clone https://github.com/locchh/commit-explorer
3129cd commit-explorer
3230uv 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
You can’t perform that action at this time.
0 commit comments