Skip to main content

Posts

Showing posts with the label Version Control

Cleanup failed to process the following paths. pristine text not present.

While working with Subversion you may face error as “Cleanup failed to process the following paths…The system cannot find the file specified.” Reason: This error occurs when certain pristine file doesn’t exist in your SVN directory; reason may be corrupted repository or due to Subversion is upgraded to new latest version, due to which you may get error while trying to clean up the repository. Solution: To solve the error there are two possible options, I came across (although there may be another option as well):   ·          First option is create missing file with nothing in it (i.e. blank file) and then cleanup should work. For example you are getting error of missing file ‘ 5dd653fb079a95e1a459384a5e78e37ca3350d8d.svn-base ’, just create the blank file with this name on path shown in error. ·          Another option is checkout the code in new directory and use Beyond Compare to m...