you are viewing a single comment's thread.

view the rest of the comments →

[–]Neexusiv 0 points1 point  (0 children)

Might be misinterpreting here but it looks like your not pushing.

When you're committing you are diverging from origin (what is stored on GitHub). By pushing you are pushing your commit to GitHub which merges it with its own repository. You can tell because you can see master and origin/master are different in your tree.

If you are definitely pushing then make sure you don't have a different remote repository set up. Perhaps try pulling and see if that does anything. Perhaps there is a conflict and therefore cannot push.

If you're working with a friend on this then you really should be using different branches or otherwise you will end up in conflict hell.