I have cloned a repository from github and checked out a remote branch. I made a change to the remote branch, committed it, but then when I try to push the change back to the remote branch I get the message "Everything is up-to-date". What am I doing wrong here? Plus, it doesn't let me push to the branch, the only option is master.

I'm using git gui, and checking out the branch was very simple. I just can't figure out how to push the change back to the repository. Any help is appreciated, thanks!

link|improve this question

what is being shown when you type git status? – Felipe Sabino Jun 16 '11 at 23:17
# on branch remotebranch nothing to commit (working directory clean) – GiH Jun 16 '11 at 23:22
feedback

1 Answer

up vote 1 down vote accepted

From the command line,

git push -u origin branch-name

Now in git gui you should have that branch come up

link|improve this answer
you're right, i do see it now but it still tells me that everything is up to date... any idea why its not pushing the changes? – GiH Jun 17 '11 at 0:19
The command line pushed it. So now it's up to date. Check on github – Adam Dymitruk Jun 17 '11 at 1:13
I don't see any changes on github under my actions, nor in the repository :( – GiH Jun 17 '11 at 4:51
Did you pick the other branch from the drop down? – Adam Dymitruk Jun 17 '11 at 5:58
it turned out the change I made was lost somehow, maybe by switching between branches or something, I had to make the change and commit it again, then pushed it and it worked :) Thanks! I wonder what happened to my previous commit haha... – GiH Jun 17 '11 at 14:27
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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