Diego Alcubierre
Diego Alcubierre

Reputation: 105

Xcode not showing commits in Repository

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

Upvotes: 0

Views: 1626

Answers (1)

matt
matt

Reputation: 535231

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

Upvotes: 2

Related Questions