Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 10 doesn't support SVN (Subversion)

Tags:

svn

xcode10

Installed new Xcode 10 beta version, Couldn't see the option for SVN in Xcode->Preferences->Source Control, I could see Git alone.

I guess Xcode 10 removed the SVN GUI, instead it supports only Git. Or I miss something in configuration.

Thanks.

like image 443
RJV Kumar Avatar asked Jun 30 '18 07:06

RJV Kumar


Video Answer


3 Answers

I'm using svn as well. And Xcode 10 beta is removing the support for svn is really a terrible thing. But I do find a out that using git-svn is one of the solution.

  • git svn clone 'svn url' 'localpath' <-> svn checkout 'svn url' 'localpath'
  • git svn rebase <-> svn update
  • git svn dcommit <-> svn commit

You may google for more information on this.

Now. You could using Xcode to compare codes with your local git. Then using command to update from or commit to svn.

like image 53
Sword Jason Avatar answered Oct 07 '22 01:10

Sword Jason


SVN support has unfortunately been removed. As a free alternative you can use alongside Xcode take a look at svnX. HTH

like image 21
CRD Avatar answered Oct 07 '22 00:10

CRD


Yes, they dropped SVN support.

Found that SnailSVN is good enough - it resembles closely TortoiseSVN on Windows which is good.

like image 30
c-smile Avatar answered Oct 07 '22 01:10

c-smile