Each time before committing I have a lot of changed files in my project. But also I have a lot of files that shouldn't be committed to SVN (it need me for local work). I need traverse all changed files and REMEMBER which of them should be committed.
Is that possible to mark(maybe with some Eclipse plugin) files for further selection and committing.
Asked
Active
Viewed 563 times
1

Michael Z
- 3,883
- 10
- 43
- 57
-
Right answer is change lists -- NOT IGNORE! – gaRex May 24 '11 at 18:15
1 Answers
1
You can use changelists. See this Stackoverflow question on using changelists in Eclipse.
In Subversion 1.5 and higher, you can put your files into changelists. You can then commit, update, and revert only those files in that particular changelist. Put your "don't commit files" into one changelist, or the "I only want to check in these files into another changelist.
The svn:ignore
won't work if these files are already checked into Subversion. It's only for adding new files.