up vote 6 down vote favorite
share [g+] share [fb]

So, I've been living with my cvs repositories for some time. Though there is a thing I miss - if i rename a file that is already in repository, I need to delete the one with old name from there and add the new one. Hence, I loose all my change-history. And sometimes there's a need to rename a file in alredy existing project.

From what I saw, cvs/svn can't handle something like this, or am I wrong? If not, what other source control system would you recommend, that allows the renaming of files?

link|improve this question

68% accept rate
feedback

5 Answers

up vote 12 down vote accepted

Subversion can do this, but you have to do it with

svn move <oldfile> <newfile>
link|improve this answer
feedback

The online CVS manual has some detail on how to do this:

The normal way to move a file is to issue a cvs rename command.

$ cvs rename old new
$ cvs commit -m "Renamed old to new"

This is the simplest way to move a file. It is not error prone, and it preserves the history of what was done. CVSNT clients can retrieve the original name by checking out an older version of the repository.

This feature is only supported on CVSNT servers 2.0.55 and later.

link|improve this answer
feedback

Pretty much any modern version control system will allow this (Subversion, Perforce, Vault, git, Mercurial, TFS, etc.).

The only ones I can think of that won't (or that have major caveats) are CVS and VSS.

link|improve this answer
feedback

In svn, use svn mv.

See also: http://subversion.tigris.org/faq.html#case-change in the FAQ.

link|improve this answer
feedback

Subversion has rename capability.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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