how to check in only set of files changed into subversion

svn

Solution

Just give the file names to the commit command:

svn commit -m "Fixed a bad bug" file1 file2

If you are using subversion 1.5 or newer, you could instead create a changelist.

svn changelist mychanges file1 file2

will create a changelist called `mychanges` and assign the files `file1` and `file2` to it.

Then you can commit the changelist, or use the changelist on many other commands as well:

svn commit -m "Fixed a bad bug" --changelist mychanges

Problem

How to check in only selected files changed in to the repository?

Original source