Otherwise URLs in the wild that point at older release notes will become dangling. Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> --- > Jonathan Nieder <jrnieder@xxxxxxxxx> writes: > >> this would invalidate old URLs like >> >> http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.2.3.txt >> >> , no? Perhaps grandfathering the old URLs with a patch like this may be sufficient. Documentation/install-webdoc.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Documentation/install-webdoc.sh b/Documentation/install-webdoc.sh index e5c1cbe..76d69a9 100755 --- a/Documentation/install-webdoc.sh +++ b/Documentation/install-webdoc.sh @@ -30,7 +30,7 @@ for th in \ do h=`expr "$th" : "$strip_leading"'\(.*\)'` case "$h" in - index.html) continue ;; + RelNotes-*.txt | index.html) continue ;; esac test -f "$h" && continue echo >&2 "# rm -f $th" -- 1.7.3.rc0.183.gb0497 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html