vote up 0 vote down star

Consider the following subversion directory structure

/dir1/file.txt

/dir2/file.txt

I want to move the file.txt in dir1 to replace the same file in dir2 and ensure that the history for the dir1 file is maintained. I don't care about the history of original dir2 file.

Is this possible using subversion commands and not hacking the backend?

flag

2 Answers

vote up 4 vote down check

Firstly you should never consider hacking the backend - it negates the point of using SVN in the first place.

I don't see why you couldn't just do

svn rm /dir2/file.txt
svn mv /dir1/file.txt /dir2/file.txt

the history of the file will follow it after the move.

link|flag
vote up 0 vote down

Try

  1. Delete dir2/file.txt and commit
  2. issue a svn move command to move dir1/file.txt to dir2/file.txt and commit - The history should be preserved.
link|flag
Duplicate answer. – Gamecat Oct 2 '08 at 10:39
So what happened was that I opened the page, it had no answers, I went away for a while and came back and answered. If I am going to be down voted for duplicate answers there should be a way to determine if I had seen the answers before :( :( – Sijin Oct 2 '08 at 10:45
There where 10+ minutes between the answers. But ok, removed the -1. (Next time try refresh ;-). – Gamecat Oct 2 '08 at 11:58

Your Answer

Get an OpenID
or

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