Skip to content

Commit 592fac9

Browse files
committed
doc
1 parent bcca0aa commit 592fac9

File tree

2 files changed

+20
-19
lines changed

2 files changed

+20
-19
lines changed

CHANGES.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1-
## Version 0.1.3
1+
## Version 0.1.4
22
Unreleased
3+
4+
## Version 0.1.3
5+
Released 2025-08-07
36
- Add CSV report
47
- Change default report name to 'report_<project_name>'
8+
- Improve tests
9+
- Improve exception handling
510
- Remove aggregate, last_version_only, and before
611

712
## Version 0.1.2

README.md

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,24 @@ pip install gitevo
2828

2929
Analyzing the evolution of a Git repository:
3030

31-
```
32-
$ gitevo -r <python|js|ts|fastapi> <git_repo>
33-
```
34-
35-
For example:
31+
```shell
32+
$ gitevo -r {python|python_fastapi|javascript|typescript|java} <git_repo>
3633

37-
```
34+
# For example:
3835
$ gitevo -r python https://github.com/pallets/flask
39-
$ gitevo -r js https://github.com/expressjs/express
40-
$ gitevo -r ts https://github.com/vuejs/core
36+
$ gitevo -r javascript https://github.com/expressjs/express
37+
$ gitevo -r typescript https://github.com/vuejs/core
4138
$ gitevo -r java https://github.com/mockito/mockito
42-
$ gitevo -r fastapi https://github.com/fastapi/fastapi
39+
$ gitevo -r python_fastapi https://github.com/fastapi/fastapi
4340
```
4441

45-
`git_repo` accepts (1) a Git URL, (2) a path to a local repository, or (3) a directory containing multiple Git repositories:
42+
`git_repo` accepts (1) a Git URL, (2) a local repository, or (3) a directory containing multiple Git repositories:
4643

4744
```shell
4845
# 1. Git URL
4946
$ gitevo -r python https://github.com/pallets/flask
5047

51-
# 2. Path to a local repository
48+
# 2. Local repository
5249
$ git clone https://github.com/pallets/flask
5350
$ gitevo -r python flask
5451

@@ -64,24 +61,23 @@ $ gitevo -r python .
6461

6562
```
6663
$ gitevo --help
67-
usage: gitevo [-h] [-r {python,js,ts,java,fastapi}] [-f FROM_YEAR] [-t TO_YEAR] [-m] [-l] [-v] repo
64+
gitevo % gitevo --help
65+
usage: gitevo [-h] [-r {python,python_fastapi,javascript,typescript,java}] [-f FROM_YEAR] [-t TO_YEAR] [-m] [-v] repo
6866
6967
Command line for GitEvo
7068
7169
positional arguments:
72-
repo Git repository to analyze. Accepts a Git URL, a path to a local repository, or a directory containing multiple Git
73-
repositories
70+
repo Git repository to analyze. Accepts a Git URL, a local Git repository, or a directory containing multiple Git
71+
repositories. Example: gitevo https://github.com/pallets/flask
7472
7573
options:
7674
-h, --help show this help message and exit
77-
-r {python,js,ts,java,fastapi}, --report-type {python,js,ts,java,fastapi}
78-
Report type to be generated. Default is python.
75+
-r {python,python_fastapi,javascript,typescript,java}, --report {python,python_fastapi,javascript,typescript,java}
76+
Report to be generated. Default is python.
7977
-f FROM_YEAR, --from-year FROM_YEAR
8078
Filter commits to be analyzed (from year). Default is today - 5 years.
8179
-t TO_YEAR, --to-year TO_YEAR
8280
Filter commits to be analyzed (to year).
8381
-m, --month Set to analyze commits by month.
84-
-l, --last-version-only
85-
Set to analyze the last version only.
8682
-v, --version Show the GitEvo version.
8783
```

0 commit comments

Comments
 (0)