Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode is not showing changes for files on SVN

Tags:

xcode

svn

We're using svn for version control on our Mac. Its working cool. But the only problem is we're multiple devs developing together and everyone can see any file changes status inside their Xcode ( attributes next to the file ) in their Xcode except me. How to resolve this?

This is what I want (see "M" next to the file name),

enter image description here

Even Xcode Source Control Menu is showing no changes.

enter image description here

I'm not sure if there's anything to set here?

enter image description here

I have checkout the code again and again, but still the problem persist.

I'm not sure, why this "Working Copies" menu "iOS" is disabled? Its enabled on other machine.

enter image description here

Any help would be highly appreciated.

like image 771
Hemang Avatar asked Feb 09 '16 06:02

Hemang


1 Answers

I also encountered this problem, the following is my solution, hope I can help you.

  1. Start the terminal, enter the code in the folder.
  2. Type the command - svn status.

The output will be similar to this

  • svn: E155036: Please see the 'svn upgrade' command
  • svn: E155036: The working copy at '/Users/chao/svn/project' is too old (format 29) to work with client version '1.9.4 (r1740329)' (expects format 31). You need to upgrade the working copy first.

  1. Type the command - svn upgrade.
  2. The problem is resolved,I wish you good luck.
like image 148
Chao Avatar answered Nov 15 '22 20:11

Chao