Datenshi
Datenshi

Reputation: 1191

Xcode change repositories

Maybe anyone knows a way how to change repositories.

I have to continue a project made by other company, and they have their svn repository in their server. I'v created my own git repository, yet the files keep commiting to the old svn. Deleting the first repository in organizer does not help at all, if i try to commit file, it recreates...

So how do I switch between old svn to my new git repository ?

Upvotes: 1

Views: 781

Answers (1)

chrislhardin
chrislhardin

Reputation: 1745

close XCode, go into the terminal and delete all the .svn directories from the folder hierarchy, issue "git init ." in the root directory and now restart XCode.

Upvotes: 1

Related Questions