It is required to remove directories created by source code version control systems like CVS and SVN before releasing the source code. This can be done using the following command at the bash shell.

  • Move to top level directory of your project sources
  • Run the following commands
    bash# find . -iname CVS -type d | xargs rm -rf
    bash# find . -iname .svn -type d | xargs rm -rf