Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SVN server for Mac OSX [closed]

Tags:

macos

svn

I used to use Visual SVN on Windows. Now I am on Mac OSX.

Does anyone know of an SVN server for MAC OSX which is as easy to use as Visual SVN on Windows? I don't want to be typing in console commands, I'd like a nice and simple UI :-)

Cheers

like image 283
Peter Morris Avatar asked Jan 16 '10 16:01

Peter Morris


People also ask

Does SVN work on Mac?

For example, svnX supports all current versions of Mac OS X from 10.5 to 10.8. You can get it at http://code.google.com. After the download, start SVNx and you will see two windows named Working Copies and Repositories. Under Repositories, add the URL und Login Data from the SVN Server.

What is the best SVN client for Mac?

SmartSVN – SVN Client. The popular Subversion client for macOS, Windows and Linux. Available as free Foundation edition and as full-featured Professional edition.

Is Tortoise SVN available for Mac?

TortoiseSVN is not available for Mac but there are some alternatives that runs on macOS with similar functionality. The best Mac alternative is SmartSVN, which is free.


1 Answers

Mac OSX LION and Snow Leopard comes with SVN Server by default. An easy tutorial can be found here

Basically you will be using command line (shell) environment. No GUI tool is available.

To create a repository issue this command

svnadmin create MyFirstRepository 

This will create a repository with the above name in the current folder.

The next step is to import a directory. Use this command

svn import destination-folder file:///path-to-repository -m "Initial Import" 

The third step would be to checkout what you just checked in.

svn checkout file:///path-to-repository destination-folder 
like image 200
Hammad Khan Avatar answered Sep 28 '22 15:09

Hammad Khan