How do you move a file?

后端 未结 13 2122
夕颜
夕颜 2020-11-30 18:01

I\'m using TortoiseSVN against the SourceForge SVN repository. I\'d like to move a file from one folder to another in order to maintain its revision history. Is this possibl

相关标签:
13条回答
  • 2020-11-30 18:17

    May also be called, "rename" by tortoise, but svn move, is the command in the barebones svn client.

    0 讨论(0)
  • 2020-11-30 18:20

    With TortoiseSVN I just move the file on disk.

    When I come to commit my changes I select the missing file and the new one and select "Repair move" from the right click menu:

    This means I can let my IDE move round files and use it refactoring tools without losing history.

    0 讨论(0)
  • 2020-11-30 18:24

    Transferring a file using TortoiseSVN:

    Step:1 Please Select the files which you want to move, Right-click and drag the files to the folder which you to move them to, A window will popup after follow the below instruction

    Step 2: After you click the above the commit the file as below mention

    0 讨论(0)
  • 2020-11-30 18:28

    For TortoiseSVN client:

    1. Select the files you wish to move,
    2. Right click and drag the files to the folder you wish to move them to,
    3. A window will popup after you release the drag and drop on a folder. Click "SVN Move versioned item(s) here",
    4. After you click the above the commit window message box will appear. Enter a message and submit.

    Now you are done.

    0 讨论(0)
  • 2020-11-30 18:29

    Subversion has native support for moving files.

    svn move SOURCE DESTINATION
    

    See the online help (svn help move) for more information.

    0 讨论(0)
  • 2020-11-30 18:30

    Check out section 5.14.2. Moving files and folders (or check out "move" in the Index of the help) of the TortoiseSVN help. You do a move via right-dragging. It also mentions that you need to commit from the parent folder to make it "one" revision. This works for doing the change in a working copy.

    (Note that the SVN items in the following image will only show up if the destination folder has already been added to the repository.)

    tortoise move menu

    You can also do the move via the Repo Browser (section 5.23. The Repository Browser of the help).

    0 讨论(0)
提交回复
热议问题