I\'m a little new to Git, and I\'m hoping somebody can explain what this message means exactly, in my scenario.
To give you some background information, this is what I\'
This means that you have committed changes to the repository local to your machine. Those commits do not exist in the repository that you have cloned from. That message is a reminder that your repository has things in it that do not exist anywhere else.
To make git "happy" you need to push your changes somewhere (usually from where you cloned from)
run git push origin master
to resolve.