Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How does this actually come about?

I am working in one repo by myself at the moment, so this is my workflow:

1- change files
2- commit
3- repeat 1-2 until satisfied
4- push to master

Then when I do a git status it tells me that my branch is ahead by X commits (presumably the same number of commits that I have made). Is it because when you push the code it doesn't actually update your locally cached files (in the .git folders)? git pull seems to 'fix' this strange message, but I am still curious why it happens, maybe I am using git wrong?


including what branch is printed in the message

My local branch is ahead of master

where do you push/pull the current branch

I am pushing to github and pulling to whichever computer I happen to be working on at that point in time, my local copy is always fully up to date as I am the only one working on it.

it doesn't actually check the remote repo

That is what I thought, I figured that I would make sure my understanding of it was correct.


are you passing some extra arguments to it?

Not ones that I can see, maybe there is some funny config going on on my end?

$ git status
# On branch master
# Your branch is ahead of 'origin/master' by 1 commit.
#
nothing to commit (working directory clean)
share|improve this question
How are you doing the push and what are your remote and branch config settings? – Charles Bailey Mar 12 '10 at 12:23
1  
it doesn't actually check the remote repo, you need to do a git fetch the fetch the latest information on the remote repo after performing the push, this will update the local "remote" branch that it uses to track against. – Sekhat Mar 12 '10 at 12:36
1  
@Sekhat: While git status doesn't check the remote repository, git pull does. If you have a tracking branch for a repository that you push to, git push will update your local tracking branch to reflect the new state of the remote branch if your push is successful. This is why I asked about the asker's config because if it is not happening correctly there is probably a configuration error. – Charles Bailey Mar 12 '10 at 12:42
git status? really? my git status never tells me how far ahead my branch is .. are you passing some extra arguments to it? – hasen j Mar 12 '10 at 16:47
1  
@hasen j: git status doesn't go to the remote repository to check whether the remote branch has been updated. It tells you how far ahead your local branch is compared to your locally stored remote tracking branch. The issue is that a normal git push (as well as fetch and pull) should update the remote tracking branch and for the the asker this doesn't appear to be working. To see why we need to see both the exact form of git push that is being used and the local repository's config but as the asker has already accepted an answer I can't see this happening now. – Charles Bailey Mar 14 '10 at 21:41
show 3 more comments

4 Answers

up vote 166 down vote accepted

If you get this message after doing a "git pull remote branch", try following it up with a "git fetch".

Fetch seems to update the local representation of the remote branch, which doesn't necessarily happen when you do a "git pull remote branch".

share|improve this answer
Bravo. That was really the issue. I started by creating a repository on google code. Then I cloned this repository on my laptop and I do work there and push the changes, laptop => code.google. I used to get this message on my server where I had created a clone of code.google code repository and I used to pull the changes. I think fetch is required to update the local database. – rjha94 Aug 27 '11 at 11:40
We had the same problem here because another branch (A) pointed to the same commitid of master. Pulling A and then pulling master resulted on this same situation. When git pulled A, the commitid was updated to last one, so pulling master it has nothing to actually pull, so git didn't update the master last commitid and was warning about being "ahead of master". – Uberto Sep 20 '11 at 14:53
Rich, thank you so very much. I've been trying to find this answer for about 30 minutes and it's been driving me nuts! – Mike Lyons Nov 3 '11 at 14:39
16  
IIUC, this is a git pull bug... – Hertzel Guinness Jan 10 '12 at 9:47
This is super helpful to know. – Jay Taylor Jan 19 '12 at 18:51
show 2 more comments

I think you’re misreading the message — your branch isn’t ahead of master, it is master. It’s ahead of origin/master, which is a remote tracking branch that records the status of the remote repository from your last push, pull, or fetch. It’s telling you exactly what you did; you got ahead of the remote and it’s reminding you to push.

share|improve this answer
8  
This is actually after I pushed. I had to pull (or possibly fetch?) to get it to not have that message. – SeanJA Mar 12 '10 at 23:54

Someone said you might be misreading your message, you aren't. This issue actually has to do with your <project>/.git/config file. In it will be a section similar to this:

[remote "origin"]
    url = <url>
    fetch = +refs/heads/*:refs/remotes/origin/*

If you remove the fetch line from your project's .git/config file you'll stop the "Your branch is ahead of 'origin/master' by N commits." annoyance from occurring.

Or so I hope. :)

share|improve this answer
I shall check that out next time I see the ahead by x commits message. I haven't seen the message in a while. – SeanJA Dec 4 '10 at 16:03
I haven't seen the message in a while. I think it is because I have started creating the git repo locally, then pushing it to a remote repo instead of the other way around... – SeanJA Dec 4 '10 at 16:34
This fixed my problem, thanks. – markmuetz Jan 10 '11 at 10:34
I tried this, but it made eGit in Eclipse start popping up with "internal error" when I tried to commit. Git itself seemed to work fine, though. – user4815162342 Aug 27 '12 at 19:57
What does that line do? and what am I missing out on by removing it? (apart from the annoyance) – John Mee May 23 at 2:39

It just reminds you the differences between the current branch and the branch which does the current track. Please provide more info, including what branch is printed in the message and where do you push/pull the current branch.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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