Hikari
Hikari

Reputation: 3947

Move folders in Subversion using Tortoise

I've been creating milestones of trunk inside branches folder. But they are getting numerous, and are all related, so I decided to create a /branches/milestones/1.0.0/ and throw all 1.0.0 version's milestones in there.

If it was a rename, Tortoise has the rename feature. But how about moving all files inside a folder? how to make Subversion understand it and keep track instead of think it was a delete-add?

Upvotes: 0

Views: 74

Answers (1)

alroc
alroc

Reputation: 28194

In Subversion, rename & move are synonymous. Both are implemented as a copy with history immediately followed by a delete.

Upvotes: 1

Related Questions