Frequently I come across the following statements in C/C++ source code:
$Id: lzio.c,v 1.24 2003/03/20 16:00:56 roberto Exp $
$Id: file name, version, timestamp, creator Exp $
Have you got any idea which software produces those "signatures"?
Frequently I come across the following statements in C/C++ source code:
$Id: lzio.c,v 1.24 2003/03/20 16:00:56 roberto Exp $
$Id: file name, version, timestamp, creator Exp $
Have you got any idea which software produces those "signatures"?
I've seen a few vim setups that will auto-magically populate these values. SVN can grab these values on pre and post commit hooks to fill default information in commit logs.
Keyword substitution in subversion produces this sort of information, in particular Id:
You can tell subversion to insert these values using svn:keywords
You can also make these substitutions automatic by editing your config:
Perforce supports some (not sure about all) of those key words.
Version control systems such as CVS can produce such tags.
Both RCS and CVS produce strings that look exactly like that.