Discussion:
deleteing/removing a CVS branch
KM
2011-08-02 21:58:04 UTC
Permalink
 
I know it is not recommended to remove branches, but a developer created on and it was wrong and they are not using it. 
 
a few things:
 - can I use     cvs rtag -d <branchname/branchtag>
- how can i be sure it is safe to use it
 
Thanks
KM
Michael Haggerty
2011-08-03 07:16:05 UTC
Permalink
Post by KM
I know it is not recommended to remove branches, but a developer created on and it was wrong and they are not using it.
- can I use cvs rtag -d <branchname/branchtag>
- how can i be sure it is safe to use it
That command only erases the name from the branch. If there were any
commits on the branch, they will still be in the repository but nobody
will know which deleted branch they were associated with.

It is possible to "obsolete" (delete) the commits that were made on the
branch, but this is a manual and error-prone procedure.

All in all, I suggest you leave things the way they are unless there
were never any commits on the branch.

Michael
--
Michael Haggerty
***@alum.mit.edu
http://softwareswirl.blogspot.com/
Spiro Trikaliotis
2011-08-03 08:48:53 UTC
Permalink
Hello,
Post by Michael Haggerty
It is possible to "obsolete" (delete) the commits that were made on the
branch, but this is a manual and error-prone procedure.
Loading...