I\'m sorry if this is a duplicate, I\'ve searched google and SO and couldn\'t find anything similar since it\'s a fairly generic set of words to search for!
What I w
I do not know if that is possible, I'm quite a newbie on VCSes.
But you can tell the other VCS to ignore files, for CVS make a .cvsignore file:
.cvsignore
.git *ignore_me*
for SVN use
$ svn propset svn:ignore -F .cvsignore .
Hope this helps.