git-coco 0.45.0 → 0.46.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -6
- package/dist/index.esm.mjs +899 -20
- package/dist/index.js +899 -20
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ An AI-powered git assistant that generates meaningful commit messages, creates c
|
|
|
18
18
|
- 📋 **Conventional Commits** - Full support with automatic validation and formatting
|
|
19
19
|
- 🔧 **Commitlint Integration** - Seamless integration with your existing commitlint configuration
|
|
20
20
|
- 🏠 **Local AI Support** - Run completely offline with Ollama (no API costs, full privacy)
|
|
21
|
-
- 🖥️ **Coco UI Git Workstation** -
|
|
21
|
+
- 🖥️ **Coco UI Git Workstation** - Twelve top-level views (history, status, diff, compose, branches, tags, stash, worktrees, pull-request, conflicts, reflog, bisect) reachable via `g`-prefixed chords, with an interactive command palette (`:`), global search (`/`), and cross-view flows like compare-two-refs and the bisect decision keys
|
|
22
22
|
- 📦 **Package Manager Friendly** - Works with npm, yarn, and pnpm
|
|
23
23
|
- 👥 **Team Ready** - Shared configurations and enterprise deployment
|
|
24
24
|
|
|
@@ -106,13 +106,15 @@ coco log --format json
|
|
|
106
106
|
`coco ui` and `coco log -i` share a chord-driven navigation model. Press `g` and then a second key to jump anywhere; `<` (or `Esc`) pops the navigation stack back.
|
|
107
107
|
|
|
108
108
|
```text
|
|
109
|
-
g h history g c compose
|
|
110
|
-
g s status g b branches
|
|
111
|
-
g d diff g t tags
|
|
112
|
-
g z stash
|
|
109
|
+
g h history g c compose g x conflicts
|
|
110
|
+
g s status g b branches g r reflog
|
|
111
|
+
g d diff g t tags < back
|
|
112
|
+
g z stash Esc back / close modal
|
|
113
|
+
g w worktrees ? help overlay
|
|
114
|
+
g p pull request : command palette
|
|
113
115
|
```
|
|
114
116
|
|
|
115
|
-
The command palette (`:`) is an interactive launcher with fuzzy filter and recently-used at the top — every keybinding and workflow action is reachable from there. `/` searches the active view (history, branches, tags, or
|
|
117
|
+
The command palette (`:`) is an interactive launcher with fuzzy filter and recently-used at the top — every keybinding and workflow action is reachable from there. `/` searches the active view (history, branches, tags, stash, or reflog). On branches, tags, and history, press `m` to mark a ref as the compare base — then `Enter` on a second ref opens a `git diff <base>..<head>` view. See the [Coco UI](https://github.com/gfargo/coco/wiki/Coco-UI) and [TUI Navigation](https://github.com/gfargo/coco/wiki/TUI-Navigation) wiki pages for the full keymap.
|
|
116
118
|
|
|
117
119
|
## Configuration
|
|
118
120
|
|