Having been spoiled by TortoiseSVN, I'm now using the command line on Linux to interact with an SVN repository.
In TortoiseSVN I would just commit changes, and it would show me a list of what was added, what was deleted and what was modified. I'd check all the boxes and click OK.
With the command line, it appears I have to do svn add
when I add files and svn rm
when I remove files and when that's all done, then I type svn commit
, and it commits the added, the removed and the modified.
Is there a command I can use that just commits files/folders I've removed, files/folders I've added and files I've modified all in one go?