# HG changeset patch # User Mike Becker # Date 1754935588 -7200 # Node ID cfaddbb6caaba6e5b7df65880f2395c5e00512a0 # Parent 9ed06885545074845c4451e568e5f0f6e3e67075 exclude the "tip" tag from the report diff -r 9ed068855450 -r cfaddbb6caab src/heatmap.cpp --- a/src/heatmap.cpp Mon Aug 11 20:06:16 2025 +0200 +++ b/src/heatmap.cpp Mon Aug 11 20:06:28 2025 +0200 @@ -61,7 +61,8 @@ chrono::year{year}, chrono::month{month}, chrono::day{day} }]; summaries[m_current_repo].emplace_back(summary_view); - if (!tags_view.empty()) { + // special case: if the (only) tag is "tip", we do not add it + if (!tags_view.empty() && tags_view != "tip") { tags[m_current_repo].emplace_back(tags_view); } }