@@ -28,27 +28,24 @@ pip install gitevo
2828
2929Analyzing 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
6967Command line for GitEvo
7068
7169positional 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
7573options:
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