mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-20 06:51:08 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33167 72102866-910b-0410-8b05-ffd578937521
7 lines
263 B
Bash
7 lines
263 B
Bash
#!/bin/sh
|
|
svn log -rHEAD --xml --verbose | xsltproc /usr/local/share/svn2cl/svn2cl.xsl - > ChangeLog.new
|
|
svn up ChangeLog
|
|
cat ChangeLog >> ChangeLog.new
|
|
mv ChangeLog.new ChangeLog
|
|
$EDITOR ChangeLog
|
|
svn commit -m 'Added ChangeLog entry from last commit' ChangeLog
|