Unique identifier for versioned files?

lumar
lumar
Does Subversion use a unique identifier for files stored in a repository? I mean, the same file can be stored in Subversion under different paths, due to the trunk-branch-tag structure of the repository. For example, file.txt can be found under these paths:  repos/project/trunk/file.txt repos/project/branches/branch1/file.txt repos/project/branches/branch2/file.txt ...  Anyway, when we open the revision graph of any of these paths, Tortoise shows the revisions for all of these paths. So, how does Subversion identify these different paths as pertaining to the same file?

Last updated

DougR
DougR
If your client is showing the revisions for all of those files then the "first" was created using "svn add" but the others were created using "svn copy".
lumar
lumar
DougR;n80670If your client is showing the revisions for all of those files then the "first" was created using "svn add" but the others were created using "svn copy".
  Yes, this is actually the case. Instead, I expect that, if I used "svn add" first in the trunk, then in a branch (a branch created before adding the file to the trunk) I would create 2 "evil twins", a well known scenario in source control management, i.e., 2 files with the same name, but with different internal identifiers. How can I distinguish between the 2 scenarios without opening the revision graph? Is there a svn, svnlook, svnadmin command that proves that file.txt under the trunk and file.txt under a branch are actually 2 different files, and not 2 revisions of the same file?
DougR
DougR
While you may create an "evil twin", as long as the contents are identical and the rep-cache is turned on then you should add another "copy" of those bits to the repository.  In terms of "evil twin", the problem is always more complicated than 1st considered. For instance, adding another copy of the same file by another name (the rep-cache will still catch this). And then there's the case of *needing* multiple files with the same name (e.g. "Makefile").  As far as I know, there's no externally visible "unique" ID available for each file/directory other than the Revision - at least not via the command-line tooling.

1-5 of 5

Reply to this discussion

You cannot edit posts or make replies: You should be logged in before you can post.