What is the best way? I use this one.
First of all I see the status of my svn repository:
svn statusIf I see ? mark at the start of the line, I then decide should I add (svn add dir/filename) or delete or whatever.
Later I do as follows:
svn status | cut -c8- > out.txtWhat this does it deletes first 8 characters and dumps svn status to file. I then edit this file via some editor deleting lines I don't need.
And then I execute the following command, which would commit only those files present in out.txt
svn ci --targets out.txt --username USER -m Commit_message