{"id":26668652,"url":"https://github.com/andrehora/gitevo","last_synced_at":"2025-08-01T11:11:35.242Z","repository":{"id":284423589,"uuid":"954898238","full_name":"andrehora/gitevo","owner":"andrehora","description":"Create code evolution reports from Git repositories","archived":false,"fork":false,"pushed_at":"2025-03-25T19:46:54.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-25T20:36:53.475Z","etag":null,"topics":["git","python","software-evolution","tree-sitter"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andrehora.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-25T19:35:46.000Z","updated_at":"2025-03-25T19:59:55.000Z","dependencies_parsed_at":"2025-03-25T20:37:03.232Z","dependency_job_id":"c00bd9d0-1881-4960-ad24-05be618845a7","html_url":"https://github.com/andrehora/gitevo","commit_stats":null,"previous_names":["andrehora/gitevo"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrehora%2Fgitevo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrehora%2Fgitevo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrehora%2Fgitevo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrehora%2Fgitevo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andrehora","download_url":"https://codeload.github.com/andrehora/gitevo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245545380,"owners_count":20632981,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["git","python","software-evolution","tree-sitter"],"created_at":"2025-03-25T21:26:20.862Z","updated_at":"2025-08-01T11:11:35.229Z","avatar_url":"https://github.com/andrehora.png","language":"Python","funding_links":[],"categories":["Tools"],"sub_categories":[],"readme":"[![tests](https://github.com/andrehora/gitevo/actions/workflows/tests.yml/badge.svg)](https://github.com/andrehora/gitevo/actions/workflows/tests.yml)\n\n# GitEvo\n\nCode evolution analysis for Git repositories.\nIt currently supports Python, JavaScript, TypeScript, and Java.\n\nExamples of reports: \n[Flask](https://andrehora.github.io/gitevo-examples/python/flask.html),\n[Pandas](https://andrehora.github.io/gitevo-examples/python/pandas.html),\n[Node](https://andrehora.github.io/gitevo-examples/javascript/node.html),\n[Express](https://andrehora.github.io/gitevo-examples/javascript/express.html),\n[TypeScript](https://andrehora.github.io/gitevo-examples/typescript/typescript.html),\n[Vue-core](https://andrehora.github.io/gitevo-examples/typescript/vuejs-core.html),\n[Spring Boot](https://andrehora.github.io/gitevo-examples/java/spring-boot.html),\n[Mockito](https://andrehora.github.io/gitevo-examples/java/mockito.html), and\n[FastAPI](https://andrehora.github.io/gitevo-examples/fastapi/fastapi.html).\n\nSee more examples: [gitevo-examples](https://github.com/andrehora/gitevo-examples).\n\n## Install\n\n```\npip install gitevo\n```\n\n## Usage\n\nAnalyzing the evolution of a Git repository:\n\n```\n$ gitevo -r \u003cpython|js|ts|fastapi\u003e \u003cgit_repo\u003e\n```\n\nFor example:\n\n```\n$ gitevo -r python https://github.com/pallets/flask\n$ gitevo -r js https://github.com/expressjs/express\n$ gitevo -r ts https://github.com/vuejs/core\n$ gitevo -r java https://github.com/mockito/mockito\n$ gitevo -r fastapi https://github.com/fastapi/fastapi\n```\n\n`git_repo` accepts (1) a Git URL, (2) a path to a local repository, or (3) a directory containing multiple Git repositories:\n\n```shell\n# 1. Git URL\n$ gitevo -r python https://github.com/pallets/flask\n\n# 2. Path to a local repository\n$ git clone https://github.com/pallets/flask\n$ gitevo -r python flask\n\n# 3. Directory containing multiple Git repositories\n$ mkdir projects\n$ cd projects\n$ git clone https://github.com/pallets/flask\n$ git clone https://github.com/pallets/click\n$ gitevo -r python .\n```\n\n## Command line arguments\n\n```\n$ gitevo --help\nusage: gitevo [-h] [-r {python,js,ts,java,fastapi}] [-f FROM_YEAR] [-t TO_YEAR] [-m] [-l] [-v] repo\n\nCommand line for GitEvo\n\npositional arguments:\n  repo                  Git repository to analyze. Accepts a Git URL, a path to a local repository, or a directory containing multiple Git\n                        repositories\n\noptions:\n  -h, --help            show this help message and exit\n  -r {python,js,ts,java,fastapi}, --report-type {python,js,ts,java,fastapi}\n                        Report type to be generated. Default is python.\n  -f FROM_YEAR, --from-year FROM_YEAR\n                        Filter commits to be analyzed (from year). Default is today - 5 years.\n  -t TO_YEAR, --to-year TO_YEAR\n                        Filter commits to be analyzed (to year).\n  -m, --month           Set to analyze commits by month.\n  -l, --last-version-only\n                        Set to analyze the last version only.\n  -v, --version         Show the GitEvo version.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrehora%2Fgitevo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrehora%2Fgitevo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrehora%2Fgitevo/lists"}