Repository and Compare Links
Repository and Compare Links
Active
Build version comparison URLs beneath release headings.
Command
[tool.custy.changelog.links]Category
Changelog Configuration
Quick Command
[tool.custy.changelog.links]Propertiesâ
Properties
| Property | Type | Description | Default | Required |
|---|---|---|---|---|
repository | HTTP(S) URL string | Project repository browser URL used only to construct changelog comparison links. This is not a Git remote name or push destination. | Empty | No |
enable_compare | Boolean | Generate comparison URLs when repository contains a valid, non-placeholder browser URL. | false | No |
Safe generated default
toml[tool.custy.changelog.links]
repository = ""
enable_compare = falseTo enable links, replace the empty value with the real project repository URL:
Enable comparison links
toml[tool.custy.changelog.links]
repository = "https://github.com/your-org/your-project"
enable_compare = trueRepository URL vs Git remotesâ
| Setting | Value | Purpose |
|---|---|---|
changelog.links.repository | Browser URL, such as https://github.com/org/project | Build links in CHANGELOG.md |
git.default_remote | One remote name, such as origin | Provide a fallback for operations that use one remote |
git.main_remotes / git.backup_remotes | Lists of remote names | Group authoritative and mirror destinations |
Use git remote -v to discover remote names and URLs. Do not copy a remote
name such as origin into changelog.links.repository.