kylex
kylex

Reputation: 14406

GitX with Github, commit not showing up

I've created a few sample changes, staged the file, and committed. The commit is successful, but the changes do not show up on github, is there something else I'm missing?

Upvotes: 4

Views: 1290

Answers (1)

mipadi
mipadi

Reputation: 410662

Did you push the changes? In Git (unlike SVN), committing only adds changes to your local repo; you still have to push the changes out to remote repos.

Upvotes: 6

Related Questions