Re: How to bring a branch back on a file when the tag has been moved

2001-11-30 Thread Larry Jones
Prabhu Ram writes: We have a branch on which dev. was taking place and someone accidentally moved the tag (which is also the branch name) to the tip of the branch. Is there a nice way of setting the branch back to the branch point ? No. CVS won't move an existing tag unless you force it

Re: How to bring a branch back on a file when the tag has been moved

2001-11-30 Thread David Everly
I don't like moving or deleting tags, so I have the following taginfo script: #!/bin/sh ## ## do not allow anyone to move or delete tags ## if [ $2 = mov ] ; then echo ---Please do not try to move or change existing tags. exit 1 fi if [ $2 = del ] ; then echo ---Please do not try to

How to bring a branch back on a file when the tag has been moved

2001-11-29 Thread Prabhu Ram (InfoSpace Inc)
Title: How to bring a branch back on a file when the tag has been moved Hi, We have a branch on which dev. was taking place and someone accidentally moved the tag (which is also the branch name) to the tip of the branch. Is there a nice way of setting the branch back to the branch point ? I