Re: [Doxygen-users] display log message of TortoiseSVN
Brought to you by:
dimitri
|
From: Fabian C. <Cen...@in...> - 2016-06-03 06:49:36
|
> * $HeadURL: https://cobsvsvn/svn/Projects/FC_CPU/FC_CPU/source/main/bus.c $ > * $Date: 2016-06-02 11:48:33 +0200 (Do, 02 Jun 2016) $ > * $Author: cobbrj0 $ > * $Revision: 3022 $ > >As you can see, I have inserted some svn::keywords like $Date$, $Revision$, >$Author$, ... Here TortoiseSVN inserts the required information when I check >in (commit) the file. > >Now, I also want to show in this file the last log message of my last check >in of this file. But I don't know if there is a keyword for this or >something else in TortoiseSVN. No, there is no svn keyword for the commit message, see here: http://svnbook.red-bean.com/en/1.8/svn.advanced.props.special.keywords.html You'd need to do something like svn log -r HEAD your_file > your_file.commitmessage and then link to this from the original file or do some other processing before running doxygen. bye Fabi |