문제

I created a new branch from HEAD and tried adding 3 projects to it. By mistake i added 2 additional projects to it which were actually not required in the branch.

To avoid confusion to future users of the branch/head, i want to remove those 2 projects from the branch and still keep them in HEAD so that anybody in future will only see those 2 projects in the HEAD.

i do not have write permissions on the CVS physical Server, is there any way to do from the cvs plugin inside eclipse?

Pls guide.

도움이 되었습니까?

해결책

I don't think you can do this from the Eclipse CVS plugin. Rather, I think you will need to do this from the command line.

First, check out the entire branch from CVS. cd to the directory just above the projects you want to delete. Then use this command:

cvs remove -R proj1 proj2 ...
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top