user310291
user310291

Reputation: 38228

Is VisualSVN Server repository compatible with svn repository I would create on linux?

I'd like to use http://www.visualsvn.com/server/

which installs simply on windows. But I'd like to know if I could copy it if needed on a linux server with apache subversion server installed. How can I be sure that the versions of format are the same ?

Upvotes: 4

Views: 1272

Answers (2)

Nick
Nick

Reputation: 101

As djechelon says, VisualSVN just uses the standard SVN protocol; you can dump your repos via the Windows command prompt - the following will dump your whole repo and all revisions:

svnadmin dump your/repos/path > /your/repo/here.dump

Upvotes: 3

usr-local-ΕΨΗΕΛΩΝ
usr-local-ΕΨΗΕΛΩΝ

Reputation: 26904

You can!

SVN is de-facto standard protocol. VisualSVN is 100% SVN-compatible, so it also works with Linux clients

I don't know exactly how to dump a VisualSVN repo, but once you do so you can do svnadmin load from Linux. See if you have a "dump" option in your GUI, or... well... RTFM :)

More info on backup and restore: http://wiki.archlinux.org/index.php/Subversion_backup_and_restore

Upvotes: 4

Related Questions