vote up 1 vote down star
1

Title says it all: I'd like to have a particular version-controlled file always be clobbered by the head revision when I do an SVN update, instead of manually having to resolve it every time I update. Does such a property exist? Or, less likely, does Tortoise SVN have its own option for that?

Edit: Some more explanation - there is a particular built file which gets checked in by a build machine; when working locally, I recompile that file myself if I'm working on its source. When I do an update on my entire repository, I really don't care if that particular file gets clobbered, since I'll just recompile it myself regardless. Force syncing is not really an option, because I don't want to accidentally clobber my source files, just these particular exceptions.

flag

67% accept rate
No such property exists. What are you attempting to accomplish? – bendin Apr 30 at 17:51
Sounds like this file might not belong under version control. – runako May 6 at 20:31

3 Answers

vote up 0 vote down check

The answer is no, there is not any built-in functionality for this.

link|flag
vote up 3 vote down

in subversion update command in a switch called *--accept :

svn up --accept [postpone|base|mine-full|theirs-full|edit|launch]

which triggers the interactive conflict-resolution.

Same is possible in TortoiseSVN. Dialog shows up if first conflict occured

link|flag
This would apply to all files covered by the update, not the specific file I am interested in, correct? – Not Sure Apr 30 at 19:12
yes, you cannot control the update without scripting – Peter Parker May 1 at 7:26
vote up 0 vote down

Isn't that called a force sync to head?

link|flag
So what? <filling space up to 15 chars> – Seb Apr 30 at 18:08
You can force sync to head revision all files for which you do not want to be bothered with manual resolution. – dirkgently Apr 30 at 18:11
Can you specify that on a per-file basis though without doing the sync's themselves on a per-file basis? – Not Sure Apr 30 at 20:34
I don't think so. – dirkgently May 1 at 4:47

Your Answer

Get an OpenID
or

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