20000528-13:55 GMT+2 Maurilio Longo <maurilio.longo@libero.it>

This commit is contained in:
Maurilio Longo
2000-05-28 11:55:29 +00:00
parent c87f2b9dc1
commit 3b8dd5b3a9
2 changed files with 31 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
20000528-13:55 GMT+2 Maurilio Longo <maurilio.longo@libero.it>
* doc/cvs_tips.txt
+ added how to add a cvs ID to new files
20000528-13:45 GMT+2 Maurilio Longo <maurilio.longo@libero.it>
+ contrib/msql/readme.txt

View File

@@ -52,3 +52,29 @@ by David G. Holm <Harbour@SpaceMoose.com>
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 <maurilio.longo@libero.it>
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.