gims 0.6.3 โ 0.6.4
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/CHANGELOG.md +13 -0
- package/QUICK_REFERENCE.md +2 -2
- package/README.md +3 -2
- package/bin/gims.js +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.6.4] - 2025-10-19
|
|
4
|
+
|
|
5
|
+
### ๐ง Command Aliases Fixed
|
|
6
|
+
- **Fixed `g i` alias**: Now correctly initializes a git repository (was incorrectly mapped to interactive mode)
|
|
7
|
+
- **Updated `g interactive` alias**: Changed from `g i` to `g int` to avoid conflicts
|
|
8
|
+
- **Verified `g ls` and `g ll`**: Both commands working correctly (short and detailed commit history)
|
|
9
|
+
|
|
10
|
+
### ๐ Documentation Updates
|
|
11
|
+
- Updated `QUICK_REFERENCE.md` to reflect correct command aliases
|
|
12
|
+
- Updated help output (`g q`) to show correct mappings
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
3
16
|
## [0.6.2] - 2024-12-19
|
|
4
17
|
|
|
5
18
|
### ๐ AI Model Updates
|
package/QUICK_REFERENCE.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
g s # Status - Enhanced git status with AI insights
|
|
7
|
-
g i #
|
|
7
|
+
g i # Init - Initialize a new Git repository
|
|
8
8
|
g p # Preview - See what will be committed
|
|
9
9
|
g l # Local - AI commit locally
|
|
10
10
|
g o # Online - AI commit + push
|
|
@@ -34,7 +34,7 @@ g setup
|
|
|
34
34
|
g s
|
|
35
35
|
|
|
36
36
|
# 2. Commit with AI (choose one)
|
|
37
|
-
g
|
|
37
|
+
g int # Interactive mode (guided)
|
|
38
38
|
g o # One-command: commit + push
|
|
39
39
|
g l # Local commit only
|
|
40
40
|
|
package/README.md
CHANGED
|
@@ -29,7 +29,8 @@ g o # AI commit + push
|
|
|
29
29
|
| Command | Description |
|
|
30
30
|
|---------|-------------|
|
|
31
31
|
| `g s` | Enhanced status with AI insights |
|
|
32
|
-
| `g i` |
|
|
32
|
+
| `g i` | Initialize git repository |
|
|
33
|
+
| `g int` | Interactive commit wizard |
|
|
33
34
|
| `g o` | AI commit + push |
|
|
34
35
|
| `g l` | AI commit locally |
|
|
35
36
|
| `g ls` | Commit history (short) |
|
|
@@ -48,7 +49,7 @@ g o # AI commit + push
|
|
|
48
49
|
```bash
|
|
49
50
|
# Daily workflow
|
|
50
51
|
g s # Check what changed
|
|
51
|
-
g
|
|
52
|
+
g int # Interactive commit
|
|
52
53
|
g o # Quick commit + push
|
|
53
54
|
|
|
54
55
|
# Advanced
|
package/bin/gims.js
CHANGED
|
@@ -237,7 +237,7 @@ program.command('status').alias('s')
|
|
|
237
237
|
}
|
|
238
238
|
});
|
|
239
239
|
|
|
240
|
-
program.command('interactive').alias('
|
|
240
|
+
program.command('interactive').alias('int')
|
|
241
241
|
.description('Interactive commit wizard')
|
|
242
242
|
.action(async () => {
|
|
243
243
|
await ensureRepo();
|
|
@@ -304,7 +304,7 @@ program.command('help-quick').alias('q')
|
|
|
304
304
|
|
|
305
305
|
console.log(color.bold('Single-Letter Workflow:'));
|
|
306
306
|
console.log(` ${color.cyan('g s')} Status - Enhanced git status with AI insights`);
|
|
307
|
-
console.log(` ${color.cyan('g i')}
|
|
307
|
+
console.log(` ${color.cyan('g i')} Init - Initialize a new Git repository`);
|
|
308
308
|
console.log(` ${color.cyan('g p')} Preview - See what will be committed`);
|
|
309
309
|
console.log(` ${color.cyan('g l')} Local - AI commit locally`);
|
|
310
310
|
console.log(` ${color.cyan('g o')} Online - AI commit + push`);
|
|
@@ -321,14 +321,14 @@ program.command('help-quick').alias('q')
|
|
|
321
321
|
|
|
322
322
|
console.log(color.bold('Essential Workflow:'));
|
|
323
323
|
console.log(` ${color.cyan('g s')} Check what's changed`);
|
|
324
|
-
console.log(` ${color.cyan('g
|
|
324
|
+
console.log(` ${color.cyan('g int')} or ${color.cyan('g o')} Commit with AI (interactive or online)`);
|
|
325
325
|
console.log(` ${color.cyan('g ls')} or ${color.cyan('g h')} View history\n`);
|
|
326
326
|
|
|
327
327
|
console.log(`For full help: ${color.cyan('g --help')}`);
|
|
328
328
|
console.log(`For detailed docs: See README.md`);
|
|
329
329
|
});
|
|
330
330
|
|
|
331
|
-
program.command('init')
|
|
331
|
+
program.command('init').alias('i')
|
|
332
332
|
.description('Initialize a new Git repository')
|
|
333
333
|
.action(async () => {
|
|
334
334
|
try {
|