versioning - How do I tag files in a directory in a SVN repository with a global version number that will appear in the actual file? -


i working on project stores multiple versions in same svn repo in different directories. ease of reference coders working on project i'd able add commented tag

# $revision: 144 $ 

however, instead of file revision should contain simple version number so:

# $version: 1.63 $ # $version: 1.64 $ # $version: 2.0 $ 

is there way subversion automatically specific directory , sub-directories new files added those?

stores multiple versions in same svn repo in different directories

sounds suspiciously tagging described in svn documentation. can instead?

svn automatically keep track of revision files came from, won't have embed in files themselves.


Comments

Popular posts from this blog

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

c++ - Convert big endian to little endian when reading from a binary file -