On 20.05.2009, at 06:22, webpost_at_tigris.org wrote:
> What are the best steps for updating a local SVN with changes from
> production? We've got 20GB of files and on a last attempt, ended up
> with old repo (.svn) folders and a mess.
>
> Is there a more efficient way to migrate changes to the dev
> repository? Thanks for any advise.
>
> 1.) Copy PROD to LOCALPROD
> 2.) Remove LOCALPROD svn entries
> $ find -name .svn -print | xargs rm -rf {}
> 3.) Remove LOCALPROD orphans
> .... ?
> 4.) Copy LOCALPROD over LOCALDEV
> $ cp -rf * LOCALDEV/*
not sure what the orphans are, though - but a simple
1.) svn export --force PROD LOCALDEV
> 2.) Update subversion repo
> $ su sync_user && svn update && svn commit -m'updating from
> production'
should yield the same result
> ------------------------------------------------------
> http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=2325171
>
> To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org
> ].
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=2325591
To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
Received on 2009-05-20 08:16:54 CEST