Reputation: 59
I have a file in SVN that I copied a while back. The only problem is that I didn't do it with an svn cp
, I did with with a normal cp
. Now, I've made a bunch of edits to the file but it doesn't have any ancestry; the logs report it being added wholesale instead of being copied.
Is there a way for me to fix my SVN repository such that it contains both information about the copy and my edits?
Upvotes: 0
Views: 63
Reputation: 6526
I suggest you to:
svn cp
then checkout the file into your working copyUpvotes: 1