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?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 4 down vote accepted

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.

link|improve this answer
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
version 0.7.1 – kylex May 10 '11 at 16:22
@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
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.