iosxcodemacossvnsvn-server

How to commit code to SVN from xcode 6.4?


Can anyone please tell me if any possibility to commit every update to SVN from xcode 6.4 or Mac OS X 10.10 via terminal codes or if any reference links for configuration of Xcode6.4 project with svn..

Currently I am using This to commit or check out from svn but is I am facing bit complicated to get update via svn co 'path' --username name from svn ..If anyone are using SVN with Graphical user interface,please tell me the procedure or if any reference links


Solution

  • Well, I am not sure what you mean by "update every commit", but if all you need is to be able to commit modified files manually from the Xcode user interface, it seems to work for me without any plugins. In the Project Navigator, all modified files are marked with M letter. If I right-click such a file (or multiple files), I can select Source Control -> Commit "filename.m" option. See a screenshot:

    SVN commit/update/discard option in XCode

    Note, to get SVN integration with Xcode working, you should open Xcode -> Preferences -> Accounts tab and add your SVN account there (+ button in the bottom left corner -> Add Repository).

    Hope this helps.