If I use svn copy
to take a snapshot of a portion of a repository, how can I update that snapshot?
Use case:
myrepo/
trunk/
src/
something.c
something.h
tags/
branches/
mkdir branches/user1/trusted
svn add branches/user1/
svn copy trunk/src branches/user1/trusted
myrepo/
trunk/
src/
something.c
something.h
tags/
branches/
user1/
trusted/
src/
something.c
something.h
--- commits and changes happen in trunk/src/something.*
here ---
myrepo/
trunk/
src/
neatstuff.c // new file
something.c // modified
big_ugly_include.h // was something.h, it got renamed
tags/
branches/
user1/
trusted/
src/
something.c
something.h
Now I want branches/user1/trusted/src to be the latest version of trunk/src. How can I do this?