Seemingly lame question, but I've been through all the docs and tutorials and am unable to figure out exactly what I want.
My repo is https://sourcerepo.something/mystuff
My working folder is
/var/www
I copy new files into
/var/www (that are not under source control since they are new)
I revise some files in
/var/www (that are already under source control)
What command would I use to add new and updated files?
What command would I use to subsequently commit?
The command
svn add /var/www/
will add all files, even the unchanged files that are already under source control. I get a thousand messages warning that the files are "already under source control"
What commandline would I use to just add new and updated files?
Thanks so much.