Fabrizio
Fabrizio

Reputation: 407

Update of SVN doesn't work

I have a problem with my svn (hosted on Dreamhost) and my local version. I clicked on "Update button" and Xcode shows me the differences beetwen the local and remote version, with one conflict. I resolved it and the update button became active but if I press it, Xcode doesn't do anything.

Why? :(

Upvotes: 0

Views: 3253

Answers (1)

VonC
VonC

Reputation: 1324278

The SO answer "Xcode Subversion (SCM) Difference between Refresh and Update" should show you how to see what svn command is done behind an XCode "Update".

I suspect that the update has been completed, and any further "Update" will find the local workspace in sync with the remote SVN repo, hence:

  • the active "Update" button (there are no more conflict to solve)
  • the absence of result once "Update" is pressed (the local workspace is updated, and the remote SVN repo has no further changes to send to said local workspace).

Upvotes: 1

Related Questions