https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93185
--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> --- So, could bugzilla change to handle (from https://gcc.gnu.org/ml/gcc/2020-01/msg00147.html ) words with regexps: r([0-9]{1,6}) to http://gcc.gnu.org/viewcvs/gcc?view=revision&revision=\1 (what we have already, should be https? and perhaps we'll switch to some redirector instead, so maybe https://gcc.gnu.org/r\1 instead?) pr([0-9]{1,6}) etc. to https://gcc.gnu.org/bugzilla/show_bug.cgi?id=\1 (also implemented, similar PR [a-z-]+/([0-9]{1,6}) ) (r[0-9]{1,2}-[0-9]{1,6}) to https://gcc.gnu.org/\1 (redirector to be implemented) g:([0-9a-zA-Z_-]+) to https://gcc.gnu.org/git/gitweb.cgi?p=gcc.git;h=\1 r[0-9]{1,2}-[0-9]{1,6}-g([0-9a-f]{7,40}) to https://gcc.gnu.org/git/gitweb.cgi?p=gcc.git;h=\1 ?