{"id":14069573,"url":"https://github.com/riezebosch/gitviz","last_synced_at":"2026-03-07T09:03:50.687Z","repository":{"id":57570312,"uuid":"207740381","full_name":"riezebosch/gitviz","owner":"riezebosch","description":"🔬 Visualize the directed acyclic graph that is your repository!","archived":false,"fork":false,"pushed_at":"2024-10-21T19:56:17.000Z","size":2617,"stargazers_count":9,"open_issues_count":2,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-07-30T05:54:34.044Z","etag":null,"topics":["dag","education","git","graph","visualization"],"latest_commit_sha":null,"homepage":"https://riezebosch.github.io/gitviz","language":"Shell","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/riezebosch.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":"2019-09-11T06:34:37.000Z","updated_at":"2024-12-30T22:24:29.000Z","dependencies_parsed_at":"2024-12-04T10:32:15.207Z","dependency_job_id":"89503732-5814-40f9-a54f-6ff308ad4fde","html_url":"https://github.com/riezebosch/gitviz","commit_stats":null,"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/riezebosch/gitviz","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riezebosch%2Fgitviz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riezebosch%2Fgitviz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riezebosch%2Fgitviz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riezebosch%2Fgitviz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/riezebosch","download_url":"https://codeload.github.com/riezebosch/gitviz/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riezebosch%2Fgitviz/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30210377,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T09:02:10.694Z","status":"ssl_error","status_checked_at":"2026-03-07T09:02:08.429Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["dag","education","git","graph","visualization"],"created_at":"2024-08-13T07:07:03.519Z","updated_at":"2026-03-07T09:03:50.657Z","avatar_url":"https://github.com/riezebosch.png","language":"Shell","funding_links":[],"categories":["Shell"],"sub_categories":[],"readme":"## gitviz\n\n![test](https://github.com/riezebosch/gitviz/workflows/test/badge.svg)\n\n`gitviz` is a tool designed for educational purposes to visualize the Git repository in real time, providing a graphical representation of the blobs, trees, and commits that make up the [git data structure](https://eagain.net/articles/git-for-computer-scientists/).\n\n[![graph](img/graph.png)https://riezebosch.github.io/gitviz/](https://riezebosch.github.io/gitviz/)\n\n### Key Features\n\n- Real-time visualization of Git repository\n- Graphical representation of blobs, trees, commits, and references (branches, tags, or HEAD)\n- An educational tool for understanding Git's data structure\n\n### Installation\n\nYou can install `gitviz` by following these steps:\n\n1. Open a terminal and navigate to the root of your repository.\n\n```sh\n#!/bin/bash\n\nset -e\n\nos=$(uname)\narch=$(uname -m)\n\ncase $arch in\n    aarch64|arm64)\n        arch=\"arm64\" \n        ;;\n    x86_64|amd64)\n        arch=\"amd64\"\n        ;;\n    *)\n        echo \"$arch not supported by this script\"\n        exit 1\n        ;;\nesac\n\ncurl -L -o gitviz \"https://github.com/riezebosch/gitviz/releases/latest/download/gitviz_${os}_${arch}\"\nchmod +x gitviz\nsudo mv gitviz /usr/local/bin/gitviz\n```\n\nAlternatively, you can run the following command to install `gitviz` directly:\n\n```sh\ncurl -sSL https://riezebosch.github.io/gitviz/install.sh | sh\n```\n\n### Usage\n\nTo use `gitviz`, navigate to the root of your repository in a terminal and run the following command:\n\n```sh\ngitviz\n```\n\nand use `CTRL+C` to stop it when done.\n\nYou can also run `gitviz` in the background by appending an ampersand (`\u0026`) to the command:\n\n```sh\ngitviz \u0026\n```\n\nTo stop the process when running in the background, you can use the `kill` command with the appropriate job number. For example, if the job number is `1`, you can use the following command:\n\n```sh\nkill %1\n```\n\nBy using `gitviz`, you will gain valuable insights into the structure of your Git repository in real time, with different colors representing commits, trees, blobs, and references.\n\n---\n\nThis [README.md](./README.md) was peer-reviewed by [ChatGPT](https://chat.openai.com/).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Friezebosch%2Fgitviz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Friezebosch%2Fgitviz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Friezebosch%2Fgitviz/lists"}