Adjust ChangeLog generation to git.

This commit is contained in:
Lars Immisch 2012-03-07 11:26:33 +01:00
parent f75255640c
commit 86bb0773b4
1 changed files with 4 additions and 4 deletions

View File

@ -27,19 +27,19 @@ clean-local:
.PHONY: ChangeLog ChangeLog.complete
ChangeLog:
echo "# This file is automatically generated from the Subversion log for" > ChangeLog
echo "# This file is automatically generated from the git log for" > ChangeLog
echo "# the current branch (i.e. the branch which was used for this" >> ChangeLog
echo "# release). Only changes starting from 2005-01-01 are listed here." >> ChangeLog
echo "#" >> ChangeLog
echo "# ChangeLog.complete lists all changes in all branches if needed" >> ChangeLog
echo "# for reference." >> ChangeLog
echo >> ChangeLog
svn log -r "HEAD:{2005-01-01}" -v >> ChangeLog
git log >> ChangeLog
ChangeLog.complete:
echo "# This file is automatically generated from the Subversion" > ChangeLog.complete
echo "# This file is automatically generated from the git" > ChangeLog.complete
echo "# repository. It contains all changes in all development branches" >> ChangeLog.complete
echo "# and is only meant for reference purposes. If you want to see the" >> ChangeLog.complete
echo "# changes which lead to this release, please refer to the ChangeLog" >> ChangeLog.complete
echo >> ChangeLog.complete
svn log -v https://h3281.serverkompetenz.net/repos/capisuite/ >> ChangeLog.complete
git log -g >> ChangeLog.complete