Performing Local Operations
To select the content to commit, first you need to stage (select) them. The command git add stages the contents. Once you select them, they should go into local repository.
The git command git commit adds the changes into local repository.
The local operation such as Commit is done on the local Git database just like it is done from Magic xpa while using any other version control provider. On commit, the changes are committed to the local repository. They are not available for other user until the user pushes the changes to the remote repository.
Connecting Magic xpa with Git Repository