@reck98/git-smart 1.0.7 → 1.0.8
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 +5 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
AI-powered Git workflow assistant that generates production-quality commit messages, summarizes code changes, and streamlines Git operations.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npm install -g @reck98/git-smart@1.0.
|
|
6
|
+
npm install -g @reck98/git-smart@1.0.8
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
---
|
|
@@ -28,7 +28,7 @@ npm install -g @reck98/git-smart@1.0.7
|
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
30
|
# Install globally
|
|
31
|
-
npm install -g @reck98/git-smart@1.0.
|
|
31
|
+
npm install -g @reck98/git-smart@1.0.8
|
|
32
32
|
|
|
33
33
|
# Run the config wizard (required before first use)
|
|
34
34
|
git-smart config
|
|
@@ -49,6 +49,7 @@ git-smart
|
|
|
49
49
|
| `git-smart summary` | Generate change summary only |
|
|
50
50
|
| `git-smart commit` | Generate commit messages and commit (no push) |
|
|
51
51
|
| `git-smart push` | Push current branch to remote |
|
|
52
|
+
| `git-smart history` | Show commit history |
|
|
52
53
|
|
|
53
54
|
---
|
|
54
55
|
|
|
@@ -93,13 +94,13 @@ END
|
|
|
93
94
|
### Global (recommended)
|
|
94
95
|
|
|
95
96
|
```bash
|
|
96
|
-
npm install -g @reck98/git-smart@1.0.
|
|
97
|
+
npm install -g @reck98/git-smart@1.0.8
|
|
97
98
|
```
|
|
98
99
|
|
|
99
100
|
### npx (no install)
|
|
100
101
|
|
|
101
102
|
```bash
|
|
102
|
-
npx @reck98/git-smart@1.0.
|
|
103
|
+
npx @reck98/git-smart@1.0.8
|
|
103
104
|
```
|
|
104
105
|
|
|
105
106
|
### From source
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reck98/git-smart",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "AI-powered Git workflow assistant that generates production-quality commit messages, summarizes code changes, and streamlines Git operations.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|