Tagged Questions
The keyword-substitution tag has no wiki summary.
24
votes
10answers
11k views
Moving from CVS to git: $Id:$ equivalent?
I read through a bunch of questions asking about simple source code control tools and git seemed like a reasonable choice. I have it up and running and it works well so far. One aspect that I like ...
2
votes
2answers
181 views
How can I get an updated $Revision$ in my code
I have a project into which I'd like to embed the revision number automagically.
In this case, it's a multi-file perl script. In the main file, I have a line that looks like this:
my $revision = ...
1
vote
2answers
75 views
Removing Keyword Substitution comments from source files?
Note: For wont of a better word I call the fluff at the start of source files --
/* @(#) $Id: file.c,v 1.9 2011/01/05 11:55:00 user Exp $
...
1
vote
3answers
2k views
How do I disable CVS Sticky Option -kk for keyword substitution?
I have a file in cvs that has Sticky Options set to -kk. This replaces all cvs keywords with just the keyword name to facilitate diffs. For example, $Author: Alex B$ becomes $Author$.
How do I ...
0
votes
1answer
42 views
Eclipse: How to substitute strings in files copied to output folder
Eclipse copies files which are not Java sources to output folder as-is. I need to pre-process (substitute variables) these files before they are copied. The substitution table shall be project-based.
...