Xcode 15 Source Control Documentation???

Coming from using Xcode 13 to 15, I'm missing the new concepts on how to commit and push code changes to GitHub in 15. I tried using the menu Commit... (like I did before), wrote a message, and pushed the changes to my repository. Now when I try that, a new window appears with things about, staging, append, etc, and I'm not sure what all that means.

Is there (and where is it) documentation on this new source control paradigm? All I find is docs for the "old way".

Accepted Answer

The change is referred to in the Xcode 15 release notes.

The feature itself is part of git, so you should be able to learn about it from git documentation or tutorials out on the internet.

The quick version: Starting in Xcode 15, you must explicitly stage changes to include them in a commit. Previously, changes were automatically staged when you made a commit.

Xcode 15 Source Control Documentation???
 
 
Q