The changelist feature of subversion is quite useful to distinct work related to different tasks in the same workspace.
svn changelist MyIssue fileA fileB
svn commit --cl MyIssue fileA
But after completing the work the changelist still contains all files, which are not committed (e.g. reverted).
svn status result in the following output:
--- Changelist 'MyIssue': fileB
This files have to be manually removed from the changelist.
As far as I know, the only way to remove this changelist in the current workspace is to invoke:
svn changelist --remove fileB
My questions concerning the changelist are:
- Is there an another way to drop the changelist in the current workspace?
- Are any convenience work-around e.g. shell script or emacs function ?