tags:

views:

381

answers:

2

We have a svnversion reported as 22625P.

What does the "P" mean?

+9  A: 

Try svnversion --help

4123:4168     mixed revision working copy
4168M         modified working copy
4123S         switched working copy
4123P         partial working copy, from a sparse checkout
4123:4168MS   mixed revision, modified, switched working copy
Doug Currie
+3  A: 

It's also possible you haven't done any sparse checkouts, and "P" means "punched up". The working copy has been subjected to too many SVN version upgrades, or whatever cleanup can't repair. Probably best to check out a new working copy.

Stein