I couldn't find any documentation on gitk about what the colors mean, but the problem here I think is that my yellow button has passed my master. Now when I try to do:

git push origin master

It doesn't work. How did my yellow button get over master and how do I get them back together so I can do push origin master?

This is what it looks like:

alt text

Thanks!

link|improve this question

70% accept rate
I don't use gitk, but what does 'git push origin master' tell you? – TML May 22 '09 at 8:45
TML, it just says: Everything up-to-date. It's ignoring the latest commit. – rick May 22 '09 at 8:48
feedback

1 Answer

up vote 6 down vote accepted

Looks you need to put that commit back into the master branch (if it belongs there). Also it looks like you’ve detached HEAD because that commit is not a branch head. If all this is true, try the following:

# git log -1

Remember the commit ID.

# git checkout master
# git reset --hard <commit-id>

Now gitk will show the yellow commit right next to the master marker and git push will be working again.

As to how you got into that situation, the only thing I can imagine is that you used git reset to reset the master branch to a previous commit but have not changed the currently checked-out commit.

link|improve this answer
Perfect. Thanks! – rick May 22 '09 at 9:24
feedback

Your Answer

 
or
required, but never shown

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