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
Post a Comment