First page Back Continue Last page Overview Graphics
svn move
CVS provided no easy way to rename files, but luckily, SVN does!
Standard usage:
svn move <old_file> <new_file>
Note that you need to commit to make the repository notice the move, and you need to commit both the old file and the new one (SVN treats this as a copy and a delete):
svn mv haiku.txt svn-haiku.txt
svn commit -m 'renamed haiku' \
haiku.txt svn-haiku.txt
Notes: