Skip to main content

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]

repository URLcomparereleases

Properties​

Properties

PropertyTypeDescriptionDefaultRequired
repositoryHTTP(S) URL stringProject repository browser URL used only to construct changelog comparison links. This is not a Git remote name or push destination.EmptyNo
enable_compareBooleanGenerate comparison URLs when repository contains a valid, non-placeholder browser URL.falseNo
Safe generated default
toml
[tool.custy.changelog.links]
repository = ""
enable_compare = false

To 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 = true

Repository URL vs Git remotes​

SettingValuePurpose
changelog.links.repositoryBrowser URL, such as https://github.com/org/projectBuild links in CHANGELOG.md
git.default_remoteOne remote name, such as originProvide a fallback for operations that use one remote
git.main_remotes / git.backup_remotesLists of remote namesGroup 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.

Continue