{"id":15406802,"url":"https://github.com/dannyben/git-changelog","last_synced_at":"2025-07-22T14:34:04.661Z","repository":{"id":40372945,"uuid":"298505327","full_name":"DannyBen/git-changelog","owner":"DannyBen","description":"Create a changelog from your git repository","archived":false,"fork":false,"pushed_at":"2024-12-28T07:11:13.000Z","size":109,"stargazers_count":7,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-12T05:05:44.575Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/DannyBen.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null}},"created_at":"2020-09-25T07:50:08.000Z","updated_at":"2024-12-28T07:11:14.000Z","dependencies_parsed_at":"2024-03-08T08:42:49.233Z","dependency_job_id":"36166f1c-7f57-4388-8359-25672bd4e380","html_url":"https://github.com/DannyBen/git-changelog","commit_stats":{"total_commits":107,"total_committers":1,"mean_commits":107.0,"dds":0.0,"last_synced_commit":"a0bd4e83ad50b09c4b2d6f91858990ffa282d636"},"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/DannyBen/git-changelog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DannyBen%2Fgit-changelog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DannyBen%2Fgit-changelog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DannyBen%2Fgit-changelog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DannyBen%2Fgit-changelog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DannyBen","download_url":"https://codeload.github.com/DannyBen/git-changelog/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DannyBen%2Fgit-changelog/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266510686,"owners_count":23940696,"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","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-10-01T16:25:27.148Z","updated_at":"2025-07-22T14:34:04.633Z","avatar_url":"https://github.com/DannyBen.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# git-changelog\n\n![Version](https://img.shields.io/badge/version-0.3.2-blue.svg)\n[![Build Status](https://github.com/DannyBen/git-changelog/workflows/Test/badge.svg)](https://github.com/DannyBen/git-changelog/actions?query=workflow%3ATest)\n\nCreate a markdown changelog from your git repository (without GitHub).\n\n---\n\n## Install\n\n### Installing with the setup script\n\nThe simplest way to install, is to run the [installation script][setup]:\n\n```shell\n$ curl -Ls get.dannyb.co/git-changelog/setup | bash\n```\n\nIt will:\n\n- Download the executable to `/usr/local/bin/git-changelog`\n- Download the manpage to `/usr/local/share/man/man1/git-changelog.1`\n\n### Installing manually\n\nIf you prefer to install manually:\n\n1. Download the [git-changelog](/git-changelog) file, place it somewhere in\n   your path (for example `/usr/local/bin`), and make it executable.\n2. Optionally, download the [manpage](/doc/git-changelog.1) and place it in\n   `/usr/local/share/man/man1`.\n\n\n## Example\n\nThe [changelog][changelog] in this repository was generated with\n`git changelog`.\n\n\n## Usage\n\nRun `git changelog` in any compatible git repository. It will print a\nmarkdown changelog using these rules:\n\n1. Group `git log` events by tag\n2. Only include tags that either:\n   - Start with the letter `v` followed by a digit (`v1.2.3`)\n   - Start with a digit (`1.2.3`)\n3. Only include log events that start with a hyphen followed by a space\n   (`\"- Fixed something\"`)\n\n## Merging with manual content\n\nWhen using `--save`, you can include manually edited content in the\n`CHANGELOG.md` file. To do so, add a marker in the following format to your\n`CHANGELOG.md` file:\n\n```html\n\u003c!-- break v1.2.3 --\u003e\n```\n\nThis will make `git changelog --save` perform the following actions:\n\n1. Extract changelog commits until it reaches the tag `v1.2.3`. Since tags are\n   listed in reverse order, it means it will extract only newer tags.\n2. Append the content of the `CHANGELOG.md` file starting from the marker\n   onward.\n3. Save the result back to `CHANGELOG.md`.\n\nSee [this CHANGELOG.md file](https://raw.githubusercontent.com/DannyBen/git-changelog/master/test/fixtures/CHANGELOG.md) as an example.\n\n*Note that this only makes sense when using `--save` or\n`--reverse --out FILE.md`.*\n\n## Adding commit links and tag comparison links\n\n`git-changelog` can add two types of links to your change log:\n\n1. Link for each change (commit links).\n2. Link for comparing the entire tag with the previous tag (compare links).\n\n### Commit links\n\nSet the environment variable `CHANGELOG_COMMIT_URL` to a URL. `%h` will be\nreplaced with the short commit hash, and `%H` with the long commit hash:\n\n```bash\nexport CHANGELOG_COMMIT_URL=https://github.com/DannyBen/git-changelog/commit/%h\n```\n\n### Compare links\n\nSet the environment variable `CHANGELOG_COMPARE_URL` to a URL. `%s` will be\nreplaced with the git ref range (e.g. `v1.0..v1.1`):\n\n```bash\nexport CHANGELOG_COMPARE_URL=https://github.com/dannyben/git-changelog/compare/%s\n```\n\n## Uninstalling\n\n```shell\n$ curl -Ls get.dannyb.co/git-changelog/uninstall | bash\n```\n\n\n## Contributing / Support\n\nIf you experience any issue, have a question or a suggestion, or if you wish\nto contribute, feel free to [open an issue][issues].\n\n---\n\n[issues]: https://github.com/DannyBen/git-changelog/issues\n[setup]: setup\n[changelog]: CHANGELOG.md\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdannyben%2Fgit-changelog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdannyben%2Fgit-changelog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdannyben%2Fgit-changelog/lists"}