cvs
meld – cvs diff with ease
2012/10/17
There are couple of ways to make life easier with CVS diff. But here is one that is really good. First if you haven’t, install meld: sudo yum install meld meld is basically a diff viewer and pretty …
Ignore CVS and svn directories in bash autocompletion.
2012/07/07
CVS and SVN directories are something that really cause lot of un-necessary nuisance. So, simple solution just ignore them 🙂
recursively add directory and files to cvs from Linux.
2010/04/12
Go to the directory which you want to add to cvs and execute the following: […] cvs login find . -type d -exec cvs add {} \; find . -type f -exec cvs add {} \; cvs commit […] That was …
Enter the cvs password in scripts without manual intervention, automatically
2009/10/01
One of the things I have been looking for sometime to do is enter the password for cvs in my scripts and finally here’s how to do it. echo ”password” |cvs login