Home > Net >  Xcode not showing commits in Repository
Xcode not showing commits in Repository

Time:02-10

So, I made a few commits today, but they are not showing in the Xcode Repository.

The curious thing is that the version of the project changes after every commit, but it just shows yesterday's commit.

I made a test commit showing the progress.

Image 1 - Repository before commit

Image 2 - commiting

Image 3 - Repository after committing. (you can see the changed version of the project, but not on the repository.)

I have no idea what changed from yesterday.

Thanks in advance.

Image 1

Image 2

Image 3

CodePudding user response:

You have a detached head, so your commits do not get onto main. To commit to main, first you need to be on main.

  • Related