Xcode 7 created a new branch, commit failed

Recently updated to Xcode 7 with the app. The resulting application works fine, but when I went to make the first changes in Xcode 7, I received the following error:

Working copy of "Application Name" could not commit files. error: invalid object 100644 07ce6672fd469d5c7545e48b910cb3ff4508e9ca for 'App Name / App Name-Prefix.pch' error: invalid object 100644 07ce6672fd469d5c7545e48b910cb3ff4508e9ca for 'App Name / Appfix Error Name / Name

Then I noticed that now I have an additional branch in Source Control in Xcode ... one that says "Project Name - Wizard" and only one with the name Project (without the wizard). Previously, I only worked on the master branch, since I work myself. Does anyone know why this happened after upgrading to Xcode 7? I used to upgrade versions of Xcode with existing projects and this never happened. More importantly, how do I solve this?

Thanks!

0
source share
2 answers

... xcode git, XCode. , , . , .

+1

:

git init
git add -a
git commit -m "first commit"
git remote add origin https://github.com/truhoada/StackoverFlow.git
git push -u origin master
0

Source: https://habr.com/ru/post/1621052/


All Articles