Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 350
soumya Avatar asked Jul 13 '15 07:07

soumya


People also ask

How do I commit a SVN code 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.


2 Answers

Maybe you can try svnX. I used this tool to commit and update my code before.

like image 139
jinhua liao Avatar answered Oct 05 '22 10:10

jinhua liao


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.

like image 35
Andrew Simontsev Avatar answered Oct 05 '22 09:10

Andrew Simontsev