TortoiseSVN, how to dump a repository?

前端 未结 5 1094
被撕碎了的回忆
被撕碎了的回忆 2021-02-14 15:50

I use Windows 7 and also I use TortoiseSVN to keep track of my code, now I want to migrate my repository to a cloud-service and the requirement is create a *.dump file, but I ca

5条回答
  •  一整个雨季
    2021-02-14 16:37

    The first thing you need to do is follow this tutorial to get some idea about how to use TortoiseSVN on the local machine.

    http://www.thinkplexx.com/learn/howto/scm/svn/how-to-create-and-use-local-svn-subversion-repository-on-windows-or-linux-simple-and-fast-step-by-step

    once you have done with above tutorial and committed your files to the repository, execute below command.

    svnadmin dump TortoiseRepository > dumpfile

    If your TortoiseSVN repository is not called 'TortoiseRepository' just change the name above to whatever you have called it. If the dump works you should see lots of '*Dumped revision' messages. The 'dumpfile' now contains an entire export of your TortoiseSVN repository and all the revisions, comments etc.

提交回复
热议问题