1

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.

Michael Z
  • 3,883
  • 10
  • 43
  • 57

1 Answers1

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.

Community
  • 1
  • 1
David W.
  • 105,218
  • 39
  • 216
  • 337