{"id":17678077,"url":"https://github.com/babarot/changed-objects","last_synced_at":"2026-02-19T11:03:37.442Z","repository":{"id":39864256,"uuid":"237757549","full_name":"babarot/changed-objects","owner":"babarot","description":"Get changed objects in Git commit","archived":false,"fork":false,"pushed_at":"2025-04-08T07:37:35.000Z","size":210,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-22T17:03:52.307Z","etag":null,"topics":["git","go","golang"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/babarot.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2020-02-02T11:00:46.000Z","updated_at":"2025-04-08T07:37:29.000Z","dependencies_parsed_at":"2023-09-09T05:49:40.569Z","dependency_job_id":null,"html_url":"https://github.com/babarot/changed-objects","commit_stats":null,"previous_names":["b4b4r07/get-changed-objects","babarot/changed-objects","b4b4r07/changed-objects"],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/babarot/changed-objects","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/babarot%2Fchanged-objects","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/babarot%2Fchanged-objects/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/babarot%2Fchanged-objects/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/babarot%2Fchanged-objects/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/babarot","download_url":"https://codeload.github.com/babarot/changed-objects/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/babarot%2Fchanged-objects/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29611002,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T10:52:55.328Z","status":"ssl_error","status_checked_at":"2026-02-19T10:52:26.323Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["git","go","golang"],"created_at":"2024-10-24T08:03:41.184Z","updated_at":"2026-02-19T11:03:37.437Z","avatar_url":"https://github.com/babarot.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"changed-objects\n===============\n\nGet changed objects within the commit histories by comparing between two points.\n\n```console\nUsage:\n  changed-objects [OPTIONS]\n\nApplication Options:\n  -v, --version                       Show version\n  -b, --default-branch=               Specify default branch name (default: main)\n  -m, --merge-base=                   Specify a Git reference as good common ancestors as possible for a merge\n      --type=[added|modified|deleted] Specify the type of changed objects\n      --ignore=                       Specify a pattern to skip when showing changed objects\n      --group-by=                     Specify a pattern to make into one group when showing changed objects\n      --dir-exist=[true|false|all]    Filter objects by state of dir existing (default: all)\n\nHelp Options:\n  -h, --help                          Show this help message\n```\n\n## Usage\n\n```console\n$ changed-objects\n{\"files\":[{\"name\":\"ditto.go\",\"path\":\"ditto/ditto.go\",\"type\":\"deleted\",\"parent_dir\":{\"path\":\"ditto\",\"exist\":false}},{\"name\":\"go.mod\",\"path\":\"go.mod\",\"type\":\"modified\",\"parent_dir\":{\"path\":\".\",\"exist\":true}},{\"name\":\"go.sum\",\"path\":\"go.sum\",\"type\":\"modified\",\"parent_dir\":{\"path\":\".\",\"exist\":true}},{\"name\":\"detect.go\",\"path\":\"internal/detect/detect.go\",\"type\":\"added\",\"parent_dir\":{\"path\":\"internal/detect\",\"exist\":true}},{\"name\":\"file.go\",\"path\":\"internal/detect/file.go\",\"type\":\"added\",\"parent_dir\":{\"path\":\"internal/detect\",\"exist\":true}},{\"name\":\"git.go\",\"path\":\"internal/git/git.go\",\"type\":\"added\",\"parent_dir\":{\"path\":\"internal/git\",\"exist\":true}},{\"name\":\"main.go\",\"path\":\"main.go\",\"type\":\"modified\",\"parent_dir\":{\"path\":\".\",\"exist\":true}}],\"dirs\":[{\"path\":\"ditto\",\"files\":[{\"name\":\"ditto.go\",\"path\":\"ditto/ditto.go\",\"type\":\"deleted\",\"parent_dir\":{\"path\":\"ditto\",\"exist\":false}}]},{\"path\":\".\",\"files\":[{\"name\":\"go.mod\",\"path\":\"go.mod\",\"type\":\"modified\",\"parent_dir\":{\"path\":\".\",\"exist\":true}},{\"name\":\"go.sum\",\"path\":\"go.sum\",\"type\":\"modified\",\"parent_dir\":{\"path\":\".\",\"exist\":true}},{\"name\":\"main.go\",\"path\":\"main.go\",\"type\":\"modified\",\"parent_dir\":{\"path\":\".\",\"exist\":true}}]},{\"path\":\"internal/detect\",\"files\":[{\"name\":\"detect.go\",\"path\":\"internal/detect/detect.go\",\"type\":\"added\",\"parent_dir\":{\"path\":\"internal/detect\",\"exist\":true}},{\"name\":\"file.go\",\"path\":\"internal/detect/file.go\",\"type\":\"added\",\"parent_dir\":{\"path\":\"internal/detect\",\"exist\":true}}]},{\"path\":\"internal/git\",\"files\":[{\"name\":\"git.go\",\"path\":\"internal/git/git.go\",\"type\":\"added\",\"parent_dir\":{\"path\":\"internal/git\",\"exist\":true}}]}]}\n```\n\n## Installation\n\nFrom [binaries](https://github.com/babarot/changed-objects/releases/tag/v0.3.10).\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbabarot%2Fchanged-objects","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbabarot%2Fchanged-objects","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbabarot%2Fchanged-objects/lists"}