It's not Mac OS X native, but you can give Eclipse's SVN client a try. Initial carb setting on a honda fourtrack 3000. It works on Mac OS X, and it's pretty good. Graphics UI of SVN for MAC OS X platform. Contribute to handywang/svnX development by creating an account on GitHub. Alternatives to svnX for Windows, Mac, Linux, Software as a Service (SaaS), Web and more. Filter by license to discover only free or Open Source alternatives. This list contains a total of 7 apps similar to svnX. SvnX is an OS X open source GUI for most features of the svn client binary.
Svnx For Mac Os
About the App
- App name: SvnX
- App description: svnx (App: svnX.app)
- App website: https://code.google.com/p/svnx/
Install the App
- Press
Command+Space
and type Terminal and press enter/return key. - Run in Terminal app:
ruby -e '$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)' < /dev/null 2> /dev/null ; brew install caskroom/cask/brew-cask 2> /dev/null
and press enter/return key.
If the screen prompts you to enter a password, please enter your Mac's user password to continue. When you type the password, it won't be displayed on screen, but the system would accept it. So just type your password and press ENTER/RETURN key. Then wait for the command to finish. - Run:
brew cask install svnx
Done! You can now use SvnX.
Similar Software for Mac
- App name: SvnX
- App description: svnx (App: svnX.app)
- App website: https://code.google.com/p/svnx/
Install the App
- Press
Command+Space
and type Terminal and press enter/return key. - Run in Terminal app:
ruby -e '$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)' < /dev/null 2> /dev/null ; brew install caskroom/cask/brew-cask 2> /dev/null
and press enter/return key.
If the screen prompts you to enter a password, please enter your Mac's user password to continue. When you type the password, it won't be displayed on screen, but the system would accept it. So just type your password and press ENTER/RETURN key. Then wait for the command to finish. - Run:
brew cask install svnx
Done! You can now use SvnX.
Similar Software for Mac
I'm walking through the latest beta version of Agile Web Development with Rails 2nd Edition, specifically the new bits on deploying Rails apps. Capistrano – the preferred and recommended deployment utility. Thing is – Capistrano hinges on Subversion. Not something covered in AWDwR or appropriate to be covered. There's plenty of other books on the subject.
Though, that left me stuck on how to set up a Subversion repository and access it.
I do my hosting at TextDrive, and in the interest of making this process just a hair simpler, I set up my svn repository there. Here's how I did it:
Svnx Mac Os
- Set up repository on TextDrive domain in
webmin.[your-server].textdrive.com:80
.
There's a ‘subversion repository' menu option right when you sign-in. - Assign svn access rights to a TextDrive domain user.
It's a radio button and select list selection in their profile. - Install Subversion on your local Mac – I did via macports
- Install svnX and in svnX preferences, confirm your path to svn in svnX (macports uses
/opt/local/bin
) - Import your project into the TextDrive repository
svn import /Users/your/local/path/to/the/app http://[your-domain]/svn/[repository-name]/ -m 'initial import' --username=[your-svn-account-name]
- Connect svnX to the repository
Path:http://[your-domain]/svn/[your-repository-name]
User:[your-svn-user-name]
Pass:[your-svn-user-name-pass]
- Check out your project back on to your mac by clicking the ‘svn export‘ button and picking a directory to put it (not your original directory). I created an
/svn
directory within my main project directory. - Now, if everything worked, double-clicking the repository should load it up in a new window.
- I've got a weird proxy between me and the internet right now, so I'll make sure the commits work tomorrow. UPDATE: Yep, it works. Yah!