Can I also show gitweb RSS feed tags?

I often use the gitweb RSS feed for my remote repositories, but this only shows what I did.

Is there a way to create tag creation in the feed?

(I am currently using 1.6.3.3 for remote repositories.)

Greetings.

+4
source share
1 answer

Not like now. Gitweb feed (RSS and Atom) shows only the history (log) of this branch (HEAD by default, i.e. Current branch). You can sort tags by name, using version sorting, or by tag date, but in fact the tag does not have a pointer to the previous tag, for example commit.

However, you have sources, so you can extend gitweb (and hopefully provide patches to the git mailing list, git @ vger.kernel.org).

+4
source

All Articles