svn move (mv) — Move/Rename a file or directory
This command moves files or directories in your working copy or in the repository.
Note
Subversion does not support moving between working copies and URLs. In addition, you can only move files within a single repository—Subversion does not support cross-repository moving. Subversion supports the following types of moves within a single repository:
SVN move using Tortoise SVN
To move a file or set of files using Tortoise SVN, right-click-and-drag the target files to their destination and release the right mouse button. The popup menu will have a SVN move versioned files here option.
Note that the destination folder must have already been added to the repository for the SVN move versioned files here option to appear.
If you want to do a simple in-place rename of a file or folder, use Context Menu → Rename… Enter the new name for the item and you’re done.
If you want to move files around inside your working copy, perhaps to a different sub-folder, use the right mouse drag-and-drop handler:
- select the files or directories you want to move
- right drag them to the new location inside the working copy
- release the right mouse button
- in the popup menu select Context Menu → SVN Move versioned files here
svn move command examples
Move a file in your working copy:
$ svn move foo.c bar.c
A bar.c
D foo.c
Move several files in your working copy into a subdirectory:
$ svn move baz.c bat.c qux.c src
A src/baz.c
D baz.c
A src/bat.c
D bat.c
A src/qux.c
D qux.c
Move a file in the repository (this is an immediate commit, so it requires a commit message):
$ svn move -m "Move a file" http://svn.red-bean.com/repos/foo.c \
http://svn.red-bean.com/repos/bar.c
Committed revision 27.
- Best AI tools for Software Engineers - November 4, 2024
- Installing Jupyter: Get up and running on your computer - November 2, 2024
- An Introduction of SymOps by SymOps.com - October 30, 2024
will it reserve the history ?