Adelin
Adelin

Reputation: 8219

Is it possible to flag/mark/label a specific SVN revision as tested?

Is it possible to flag/mark/label a specific SVN revision as tested (or any other label for that matter)?

There are several use cases of this feature:

  1. As a non-dev user of SVN (for example, manager), it would be useful to be able to differentiate and get only the revisions that were tested and flagged as working.
  2. In case the revision was flagged as, for example, Eligible for release, the release could be made automatically.
  3. One can filter out specific labels in order to see only those which were:

    • released,
    • not tested,
    • had crashes,
    • so on.

So I'd be surprised if it's not implemented already, but Googling didn't help.

Upvotes: 0

Views: 219

Answers (1)

Lazy Badger
Lazy Badger

Reputation: 97285

You can

  • Branch|tag any and every revision (commitable tags are against common convention, but it's possible anyway/), just follow some coherent and accepted in team policies
  • Use custom revision properties (see second forms of svn ps|svn pg|svn pl)

I, personally, will prefer tagging - it's faster and, in common, more easier way, than property-manipulation

Upvotes: 4

Related Questions