add - Simple SVN commands -


seemingly lame question, i've been through docs , tutorials , unable figure out want.

my repo https://sourcerepo.something/mystuff

my working folder is
/var/www

i copy new files into
/var/www (that not under source control since new)

i revise files in
/var/www (that under source control)

what command use add new , updated files?
command use subsequently commit?

the command

svn add /var/www/ 

will add files, unchanged files under source control. thousand messages warning files "already under source control"

what commandline use add new , updated files?

thanks much.

i recommend:

$ svn status 

will give status of files, including need added.

$ svn add /var/www/only/new/files 

and finally:

$ svn commit 

Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -