:~$ cvs commit -m "..." someFile.php
cvs commit: sticky tag 'HEAD' for file 'someFile.php' is not a branch
cvs [commit aborted]: correct above errors first!
:~$ cvs update -A someFile.php
M someFile.php
:~$ cvs commit -m "..." someFile.php
CVS: Tag all files having existing Tag with another tag (quick note)
Tag all files having existing Tag with another tag (tag „NewTag“ to all files with „ExistingTag“)
~$: cvs tag -F -r ExistingTag NewTag *
Create a CVS branch (quick note)
Tag with the root tag:
~$: cvs -d /home/cvsroot/ rtag -F Root_CustomTag ModuleName
Create the Branch, starting at the created root tag:
~$: cvs -d /home/cvsroot/ rtag -F -b -B CustomTag ModuleName
