Search code examples
iosxcodemacossvnxcodebuild

Is there an update all command for xcodebuild command line for a svn project?


Is there an update all command for xcodebuild command line for a svn project?

I am able to perform clean build and install and launch the app. Is there a Xcode command line buildaction to perform update all so as to get the latest changes made in the source code, updated in my local workspace from svn.


Solution

  • Go to Your project from command line and type below command

    svn update
    

    this command will fetch all the changes done on svn server repository.