Is it possible to always (force) overwrite local changes when updating from SVN? Ignore conflicts?
If you really want a copy of HEAD (the latest revision in repos), then you should
svn revert -R <path> // discard all your changes inside path (recursive)
svn update // get latest revision of all files (recursive)
That's it.
Beware that you will lose ALL your changes since your last 'commit'.
EDIT: added the -R <path>
from Isu_guy answer for the sake of completeness and helping readers find a single full answer
I'd do this:
svn up --accept tf
or
svn up --accept theirs-full
That said, "svn revert -R" then "svn up" at the root of your working copy would also do the trick. In my case, I have several WCs for various projects, so I run a shell script that updates all the them when I start up my computer. I don't use accept, rather I use "--accept p" to postpone resolution since it's an automated process, then I merge any conflicts that SVN can't automatically merge on it's own (usually, this involves reverting, but it depends).
tato's answer is absolutely correct and please heed his caution. You will lose ALL your changes. Just a clarification on syntax and some nuances
svn revert is non-recursive by default and needs a path to work on. To make is recursive add "-R". If you are in the current directory use "./" for the "path" below or use an absolute path like "/path_to_your_folder"
svn revert -R <path>
svn update is recursive. If you are in the directory you don't need a path at all
svn update