4

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?

kylex
  • 14,178
  • 33
  • 114
  • 175

1 Answers1

6

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.

mipadi
  • 398,885
  • 90
  • 523
  • 479
  • I guess I haven't, but how is that done using GitX? Does that have to be done via command line only? – kylex May 10 '11 at 16:19
  • @kylex: What version are you using? – mipadi May 10 '11 at 16:21
  • @kylex: I don't think there's a way to do a push in the GitX GUI in that version. – mipadi May 10 '11 at 16:23
  • If you're using one of the more up-to-date forks of gitx, they've got remote ops. The original though does not. in that case you'll have to fall back to good old `git push origin branchname` – Tekkub May 10 '11 at 21:43