{.DocumentRevisions-V100} Clear Versions History & Auto-Save Cache Data in Mac OS X


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. # Mac OS X 10.7 and later include the Versions feature and Auto-Save ability, this lets users restore back to previous editions of a file by creating a constant sequence of saved file states while they are being worked on. All around, Versions and auto-save are useful, but they can also leave traces of sensitive documents and files you may not wish to keep around. Other than the privacy implications, this same technique can resolve some erroneous behavior with Versions as well. The simplest solution to these issues is to manually delete the Versions saved states cache directory.
  2.  
  3. # The Versions cache directory is stored within the root of a Mac OS X installation here:
  4.  
  5. /.DocumentRevisions-V100/
  6.  
  7. # The safest way to remove this folder will be multiple steps, so launch the Terminal (/Applications/Utilities/) and type the following:
  8.  
  9. cd /
  10.  
  11. # To be certain you’re about to remove the proper directory, verify the directory name:
  12.  
  13. ls -l .DocumentRevisions-V100
  14.  
  15. # Delete the directory and its contents with rm:
  16.  
  17. sudo rm -rf .DocumentRevisions-V100
  18.  
  19. # All around, Versions and auto-save are useful, but they can also leave traces of sensitive documents and files you may not wish to keep around. Other than the privacy implications, this same technique can resolve some erroneous behavior with Versions as well. The simplest solution to these issues is to manually delete the Versions saved states cache directory.
  20.  
  21.  
  22.  
  23. # The Versions cache directory is stored within the root of a Mac OS X installation here:
  24.  
  25. /.DocumentRevisions-V100/
  26.  
  27. # The safest way to remove this folder will be multiple steps, so launch the Terminal (/Applications/Utilities/) and type the following:
  28.  
  29. cd /
  30.  
  31. # To be certain you’re about to remove the proper directory, verify the directory name:
  32.  
  33. ls -l .DocumentRevisions-V100
  34.  
  35. # Delete the directory and its contents with rm:
  36.  
  37. sudo rm -rf .DocumentRevisions-V100
  38.  
  39.  
  40.  
  41. # Doing this one-time will not disable the feature, it will just remove all existing history of files that have been managed by Versions.
  42.  
  43. # After a file has been processed automatically by Versions again, the directory will be rebuilt. Because this is involves editing system files and using the potentially catastrophic ‘rm -rf’ command, you shouldn’t use this tip unless you know what you’re doing and why you’re doing it.
  44.  
  45. # Also, be aware that deleting the directory can cause some temporary issues with existing files that are locked or have saved states, even if file locking is turned off. Typically this will be in the form of an error message when using the file the first time, but it shouldn’t cause any serious issues
  46.  
  47.  

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.