wukong-gitlog-cli 1.0.2 → 1.0.3
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 +4 -4
- 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
|
+
### [1.0.3](https://github.com/tomatobybike/wukong-gitlog-cli/compare/v1.0.2...v1.0.3) (2025-11-29)
|
|
6
|
+
|
|
5
7
|
### [1.0.2](https://github.com/tomatobybike/wukong-gitlog-cli/compare/v1.0.1...v1.0.2) (2025-11-28)
|
|
6
8
|
|
|
7
9
|
|
package/README.md
CHANGED
|
@@ -92,20 +92,20 @@ Command-line options:
|
|
|
92
92
|
You can generate per-month and per-week outputs under `output/month/` and `output/week/` using the `--per-period-formats` option. Example:
|
|
93
93
|
|
|
94
94
|
```bash
|
|
95
|
-
wukong-gitlog-cli
|
|
95
|
+
wukong-gitlog-cli --overtime --limit 200 --format text --out commits.txt --per-period-formats csv,tab
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
Want per-period Excel outputs? Use `xlsx` along with `--per-period-excel-mode` for `sheets` or `files`:
|
|
99
99
|
|
|
100
100
|
```bash
|
|
101
|
-
wukong-gitlog-cli
|
|
102
|
-
wukong-gitlog-cli
|
|
101
|
+
wukong-gitlog-cli --overtime --limit 200 --format text --out commits.txt --per-period-formats csv,tab,xlsx --per-period-excel-mode sheets
|
|
102
|
+
wukong-gitlog-cli --overtime --limit 200 --format text --out commits.txt --per-period-formats xlsx --per-period-excel-mode files
|
|
103
103
|
```
|
|
104
104
|
|
|
105
105
|
If you'd like only per-period outputs and not the combined monthly/weekly summary files, add `--per-period-only`:
|
|
106
106
|
|
|
107
107
|
```bash
|
|
108
|
-
wukong-gitlog-cli
|
|
108
|
+
wukong-gitlog-cli --overtime --limit 200 --format text --out commits.txt --per-period-formats csv,tab,xlsx --per-period-only
|
|
109
109
|
```
|
|
110
110
|
|
|
111
111
|
### Serve a local dashboard
|