Re: subversion won’t add new files
From: <jblist_at_icloud.com>
Date: Wed, 24 Sep 2014 09:23:42 -0700
On Sep 24, 2014, at 9:14 AM, John Maher <JohnM_at_rotair.com> wrote:
> Yes, you must "svn add" any files you want Subversion to add to the repository. It's not meant to be confusing... I found the book exceptionally clear and helpful in explaining how Subversion works and is meant to be used.
The "svn add" only needs to be performed once so that SVN knows to begin tracking the file. Afterwards, any subsequent changes to the file will be commited. Adding a file to the repository is a change to the repository and must be indicated with the "svn add". This change to the repository (the addititon) is then commited upon "svn commit".
Likewise, when you choose to remove a file from the repository, you must use "svn rm". The deletion is then commited with "svn commit". Simply removing a file from your working copy is not sufficient.
Please review the "Basic Work Cycle" section of the SVN book for more information.
http://svnbook.red-bean.com/en/1.7/svn.tour.cycle.html
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.