Search Results

1
vote

Copying a directory that is version controlled

For bzr, if you just copy the .bzr directory to another location, it'll work. It doesn't store any information about the path it's in or the host it's on, so you can copy it wherever and expect it …
1
vote

What is your preferred method for moving directory structures around in Subversion?

Moves in subversion are done by removing the old files and adding the new ones, so there's nothing special to do. The series of 'svn mv' commands in a loop recommended in the other question should …