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)

pushand what are your remote and branch config settings? – Charles Bailey Mar 12 '10 at 12:23git statusdoesn't check the remote repository,git pulldoes. If you have a tracking branch for a repository that you push to,git pushwill 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:42git status? really? mygit statusnever tells me how far ahead my branch is .. are you passing some extra arguments to it? – hasen j Mar 12 '10 at 16:47git statusdoesn'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 normalgit 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 ofgit pushthat 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