From 854b411e474b21c870afb0636512b471bf737c4c Mon Sep 17 00:00:00 2001 From: Mateusz Kurowski Date: Wed, 26 Jun 2024 11:47:14 +0200 Subject: [PATCH] docs(website): add more context about `ignore_tags` matching commits (#710) Signed-off-by: Bukowa --- website/docs/configuration/git.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/website/docs/configuration/git.md b/website/docs/configuration/git.md index e4f7050c2d..51dadd5e64 100644 --- a/website/docs/configuration/git.md +++ b/website/docs/configuration/git.md @@ -201,6 +201,9 @@ This value can be also overridden with using the `--ignore-tags` argument. While `skip_tags` drop commits from the changelog, `ignore_tags` include ignored commits into the next tag. +* Note that if a commit has multiple tags, any matched tag will result in all associated tags being ignored, including those not explicitly matched by the regex. This is because git-cliff processes tags at the commit level rather than individually. +For more details, you can view the discussion [here](https://github.com/orhun/git-cliff/discussions/707) + ### topo_order If set to `true`, tags are processed in topological order instead of chronological.