I have tried to find some resource for Subversion how to make revision history and logging message on source code; This question might be a simple
We changed our CVS to Subversion. I am having a problem that how to make Revision history and log message to show on source codes. In CVS , we had used
/**
* Revision:
* $Log$
*
*
* $Id$
*/
to commit to CVS with log message. I have tried to put "$Revision$ and $Id$" on Source Code to Subversion; however, it does not work to update the Revision history on Source Code.
I used revision mark as follows for Subversion
/**
* Revision:
* $Revision$
*
*
* $Id$
*/
Do you have any idea how to add the revision history and comments to source code when the source code is committed ?
Thanks