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

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

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

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