2

I am trying to remove all my source control stuff from my project and then setting it up new. Since I have changed the project's name and deleted some files I committed before.

I tried the following:

  1. Just committing my "new" application => results in XCode not being able to find the ViewControllers I wanted to "update".
  2. Creating a new Branch and submitting this => basically the same error.
  3. Disabling Source Control and Reenable it => no difference

Also, when I try to 'checkout' I am getting a Reference 'refs/heads/master' not found (-9) error. Any ideas?

JVS
  • 2,592
  • 3
  • 19
  • 31

1 Answers1

2

You can try with this:

rm -fr .git
Sour LeangChhean
  • 7,089
  • 6
  • 37
  • 39
  • thanks, this allowed me to create a new working copy. But I am still getting the Reference error... – JVS Mar 10 '17 at 13:10