svn: getting rid of the P flag from a checkout
If I run svnversion
on the working copy of one of my projects, I get a P suffix (partial working copy, from a sparse开发者_如何学Python checkout, according to svnversion --help
). I've tried to get rid of the P suffix but can't seem to do it, despite doing svn update
or svn cleanup
.
Besides blowing away the whole working copy, how can I? I'd like to have a clean checkout.
Try this:
svn update --set-depth=infinity path/to/folder/with/P/suffix
The important part is the --set-depth=infinity
精彩评论