i'm planning to run (on my server!)

svn update

to update my LIVE website with updates. However, i'm worried about 'C' conflicts which will prevent my site scripts from functioning. How can I force the checkout / update process to overwrite all local files (on my server!)?

I know one solution would be to do this on a separate directory - any thing else more efficient?

i've looked at:http://stackoverflow.com/questions/312491/force-an-svn-checkout-command-to-overwrite-current-files

I dont have --force option

link|improve this question

79% accept rate
Please clarify: Why would you be worried about conflicts? Do you have local changes on your server that aren't committed to SVN? If so, what do you want to happen to those changes? If not, an "svn update" command shouldn't cause any conflicts. – ChrisH May 2 '11 at 3:36
feedback

3 Answers

up vote 0 down vote accepted

Would clicking the directory and Reverting it to the base then updating have the same effect?

link|improve this answer
sorry, this is on the server itself – Frank D May 1 '11 at 16:35
that methodoly is what i needed! thanks! – Frank D May 5 '11 at 2:06
feedback

You should ask Subversion to update your working copy. If merges are necessary, Subversion will tell you. If not, you'll have the latest of everything else.

I think a better solution is to merge your code into Subversion, completely blow away your working copy, and then checking out clean from the project.

Your repository should contain all meaningful code, not your working copy.

link|improve this answer
sorry, this is on the server itself – Frank D May 1 '11 at 16:34
feedback

If you don't have --force option i think you do not have either the --accept. The svn update have a new option called --accept to "specify automatic conflict resolution action". It could be: postopone, mine-conflict, theirs-conflict, edit, launch, theirs-full, mine-full or base.

An svn help update will help!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.