Reputation: 183
Is there any way I can keep the revision number incremented on each single file, instead of on the whole repository? A simpler way to put it is probably the number of commits of a file.
SVN does this for me:
What I think is more convenient is in step 4, the revision should be 2, because it refer to "the second commit of a.txt"
Upvotes: 0
Views: 63
Reputation: 97375
No, you can't do it in SVN (by design). Independent version of single and every file in repository was implemented and used in CVS - and globally abandoned later in favor of the concept of global revisions with the scope "Repository"
Your file-revision definition:
Do not reinvent the wheel!!!
Upvotes: 4