geeto 0.6.0 → 0.6.1
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 +22 -9
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -78,7 +78,11 @@ curl -fsSL https://raw.githubusercontent.com/rust142/geeto/main/tools/install.sh
|
|
|
78
78
|
|
|
79
79
|
The installer shows step-by-step progress, detects existing installs, and verifies the installation.
|
|
80
80
|
|
|
81
|
-
> **
|
|
81
|
+
> **Prerequisites (depends on install method):**
|
|
82
|
+
>
|
|
83
|
+
> - **Homebrew / APT / Binary** — just Git ≥ 2.0 (runtime is bundled)
|
|
84
|
+
> - **NPM** — Node.js ≥ 18 + Git ≥ 2.0
|
|
85
|
+
> - **Bun / From Source** — Bun ≥ 1.0 + Git ≥ 2.0
|
|
82
86
|
|
|
83
87
|
### Uninstall
|
|
84
88
|
|
|
@@ -173,8 +177,16 @@ Each step can also be run individually.
|
|
|
173
177
|
| `geeto -lg, --log` | View commit history with timeline |
|
|
174
178
|
| `geeto -sh, --stash` | Manage stashes interactively |
|
|
175
179
|
| `geeto -am, --amend` | Amend the last commit |
|
|
180
|
+
| `geeto -rw, --reword` | Edit past commit messages |
|
|
176
181
|
| `geeto -u, --undo` | Undo the last git action safely |
|
|
177
|
-
| `geeto -
|
|
182
|
+
| `geeto -rv, --revert` | Revert the last commit (soft reset) |
|
|
183
|
+
| `geeto -al, --alias` | Install shell aliases for geeto |
|
|
184
|
+
| `geeto -sts, --stats` | Repository statistics dashboard |
|
|
185
|
+
| `geeto -st, --status` | Pretty git status overview |
|
|
186
|
+
| `geeto -pl, --pull` | Pull from remote interactively |
|
|
187
|
+
| `geeto -ft, --fetch` | Fetch latest from remote |
|
|
188
|
+
| `geeto --abort` | Abort in-progress operation |
|
|
189
|
+
| `geeto --prune` | Remove stale remote branches |
|
|
178
190
|
|
|
179
191
|
### GitHub
|
|
180
192
|
|
|
@@ -207,13 +219,14 @@ Each step can also be run individually.
|
|
|
207
219
|
|
|
208
220
|
### Editor & Options
|
|
209
221
|
|
|
210
|
-
| Command
|
|
211
|
-
|
|
|
212
|
-
| `geeto <file>`
|
|
213
|
-
| `geeto -f, --fresh`
|
|
214
|
-
| `geeto -r, --resume`
|
|
215
|
-
| `geeto -
|
|
216
|
-
| `geeto -
|
|
222
|
+
| Command | Description |
|
|
223
|
+
| ---------------------- | --------------------------------------------------- |
|
|
224
|
+
| `geeto <file>` | Open file in inline editor with syntax highlighting |
|
|
225
|
+
| `geeto -f, --fresh` | Start fresh (ignore checkpoint) |
|
|
226
|
+
| `geeto -r, --resume` | Resume from last checkpoint |
|
|
227
|
+
| `geeto -dr, --dry-run` | Simulate commands without executing |
|
|
228
|
+
| `geeto -v, --version` | Show version |
|
|
229
|
+
| `geeto -h, --help` | Show help |
|
|
217
230
|
|
|
218
231
|
---
|
|
219
232
|
|
package/lib/version.d.ts
CHANGED
package/lib/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "geeto",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "AI-powered Git workflow automation CLI with smart commit messages, branch naming, and Trello integration",
|
|
5
5
|
"author": {
|
|
6
6
|
"email": "amdev142@gmail.com",
|
|
@@ -84,18 +84,18 @@
|
|
|
84
84
|
"typescript"
|
|
85
85
|
],
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@commitlint/cli": "^20.4.
|
|
88
|
-
"@commitlint/config-conventional": "^20.4.
|
|
89
|
-
"@ianvs/prettier-plugin-sort-imports": "^4.7.
|
|
90
|
-
"@release-it/conventional-changelog": "^10.0.
|
|
91
|
-
"@types/bun": "^1.3.
|
|
92
|
-
"@types/node": "^25.
|
|
93
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
94
|
-
"@typescript-eslint/parser": "^8.
|
|
95
|
-
"cspell": "^9.6.
|
|
87
|
+
"@commitlint/cli": "^20.4.2",
|
|
88
|
+
"@commitlint/config-conventional": "^20.4.2",
|
|
89
|
+
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
|
|
90
|
+
"@release-it/conventional-changelog": "^10.0.5",
|
|
91
|
+
"@types/bun": "^1.3.9",
|
|
92
|
+
"@types/node": "^25.3.0",
|
|
93
|
+
"@typescript-eslint/eslint-plugin": "^8.56.0",
|
|
94
|
+
"@typescript-eslint/parser": "^8.56.0",
|
|
95
|
+
"cspell": "^9.6.4",
|
|
96
96
|
"danger": "^13.0.5",
|
|
97
97
|
"danger-plugin-conventional-commitlint": "^3.1.0",
|
|
98
|
-
"eslint": "^9.39.
|
|
98
|
+
"eslint": "^9.39.3",
|
|
99
99
|
"eslint-config-prettier": "^10.1.8",
|
|
100
100
|
"eslint-plugin-prettier": "^5.5.5",
|
|
101
101
|
"eslint-plugin-promise": "^7.2.1",
|
|
@@ -118,8 +118,8 @@
|
|
|
118
118
|
"bun": ">=1.0.0"
|
|
119
119
|
},
|
|
120
120
|
"dependencies": {
|
|
121
|
-
"@github/copilot-sdk": "^0.1.
|
|
122
|
-
"@google/genai": "^1.
|
|
121
|
+
"@github/copilot-sdk": "^0.1.25",
|
|
122
|
+
"@google/genai": "^1.42.0",
|
|
123
123
|
"@openrouter/sdk": "^0.5.1"
|
|
124
124
|
}
|
|
125
125
|
}
|