wukong-gitlog-cli 0.0.6 → 0.0.7
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 +2 -0
- package/README.md +2 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.0.7](https://github.com/tomatobybike/wukong-gitlog-cli/compare/v0.0.6...v0.0.7) (2025-11-27)
|
|
6
|
+
|
|
5
7
|
### [0.0.6](https://github.com/tomatobybike/wukong-gitlog-cli/compare/v0.0.5...v0.0.6) (2025-11-27)
|
|
6
8
|
|
|
7
9
|
|
package/README.md
CHANGED
|
@@ -37,22 +37,16 @@ Advanced Git commit log exporter with Excel/JSON/TXT output, grouping, stats and
|
|
|
37
37
|
|
|
38
38
|
## Installation
|
|
39
39
|
|
|
40
|
-
Clone and install dependencies:
|
|
41
40
|
|
|
42
|
-
```bash
|
|
43
|
-
git clone https://github.com/tomatoboy/wukong-gitlog-cli.git
|
|
44
|
-
cd wukong-gitlog-cli
|
|
45
|
-
npm install
|
|
46
|
-
```
|
|
47
41
|
|
|
48
42
|
Install globally to run with a short command (recommended for CLI consumers):
|
|
49
43
|
|
|
50
44
|
```bash
|
|
51
|
-
# Install globally from the repo (for development):
|
|
52
|
-
npm link
|
|
53
45
|
# Or install via npm when published:
|
|
54
46
|
npm i -g wukong-gitlog-cli
|
|
55
47
|
|
|
48
|
+
yarn global add wukong-gitlog-cli
|
|
49
|
+
|
|
56
50
|
# Then you can run the CLI globally:
|
|
57
51
|
wukong-gitlog-cli --help
|
|
58
52
|
```
|