ChangeLogs in git

Update: GNOME modules no longer require a ChangeLog file, good git commit messages are sufficient.

With the change to git, some/many/most (?) GNOME modules no longer use ChangeLogs.

This is their reasoning:

Using ChangeLog files adds usability issues to developers and translators. First, the information that goes to the ChangeLog is duplicated when adding the commit message. In usability terms, it makes sense to cut the workflow steps to those that are essential. In addition, the ChangeLog is a shared file and you are likely more that any other file to have a conflict when pushing your commits.

Generating ChangeLog files for tarball releases

If you want tarball users to have a detailed log of all the commits, along with the more generic NEWS file, you can generate a ChangeLog file from the Git commit log during the dist of your project.

If you are using autotools, a simple rule for generating the ChangeLog since the beginning of the project can be added to the toplevel Makefile.am (replace leading spaces with tabs):

dist-hook:
        @if test -d "$(srcdir)/.git"; \
        then \
                echo Creating ChangeLog && \
                ( cd "$(top_srcdir)" && \
                  echo '# Generated by Makefile. Do not edit.'; echo; \
                  $(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \
                && mv -f ChangeLog.tmp $(distdir)/ChangeLog \
                || ( rm -f ChangeLog.tmp ; \
                     echo Failed to generate ChangeLog >&2 ); \
        else \
                echo A git clone is required to generate a ChangeLog >&2; \
        fi

Unless you set automake strictness to foreign

AM_INIT_AUTOMAKE([foreign])

in your configure.ac file, you will need a dummy ChangeLog in your repository, like:

2009-04-17  Your Name  <your.name@gnome.org>

        * *: The ChangeLog is auto-generated when releasing. If you
        are seeing this, use 'git log' for a detailed list of changes.

Attic/Git/General/ChangeLog (last edited 2022-05-02 23:41:42 by SébastienWilmet)