diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 3f3381af28..046860bab8 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,8 @@ +20000528-13:55 GMT+2 Maurilio Longo + + * doc/cvs_tips.txt + + added how to add a cvs ID to new files + 20000528-13:45 GMT+2 Maurilio Longo + contrib/msql/readme.txt diff --git a/harbour/doc/cvs_tips.txt b/harbour/doc/cvs_tips.txt index 717fb0bebb..5104233091 100644 --- a/harbour/doc/cvs_tips.txt +++ b/harbour/doc/cvs_tips.txt @@ -52,3 +52,29 @@ by David G. Holm resolve those conflicts, simply remove the conflict markers. What I do to avoid conflicts to ChangeLog is to record my changes in changes.txt and then copy them into ChangeLog between the update and the commit. + + +How to add CVS ID to new files +======================================================= +by Maurilio Longo + +When a new file is added to cvs tree it has not a CVS ID. +CVS IDs look like this: + +/* + * $Id$ + */ + + +To add one to a file lacking it simply put as first lines: + +/* + * $Id$ + */ + +as soon as you commit this file your added string will be expanded +by cvs server to full length. + +Note that last dollar sign ($Id$) is mandatory. + +