I have to find all files on my computer except those which is under version control systems (git or SVN). I don't have to find not only meta files of VCS but all files in my working copy so i can't use something like
find . -type f \! -path \*/\.svn/\*;
Please, help me, cause i haven't any idea about it.
Thank you!