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

How can I view any local commits I've made, that haven't yet been pushed to the remote repository? Occasionally, git status will print out that my branch is X commits ahead of origin/master, but not always. Is this a bug with my install of Git, or am I missing something?

share|improve this question

11 Answers

up vote 232 down vote accepted
git log origin/master..HEAD

You can also view the diff using the same syntax

git diff origin/master..HEAD
share|improve this answer
2  
This did it for me - for some reason git log origin.. by itself was throwing an error. Looks like I also had a problem with the way my local branch was configured - once I made the changes I found here: wincent.com/blog/… …the problem was resolved, and I could use git status again to see what I wanted. – joshbuhler Jan 6 '10 at 22:57
1  
Invaluable: So much so I did git config --global alias.ahead "log origin/master..HEAD --oneline" so that I can quickly find out where I am. Even more candy: for i in *; do echo $i && git ahead 2>/dev/null; done – Jamie Feb 28 '12 at 2:50
@Jamie, What is the eye candy version supposed to do? – Sam Hasler Jan 9 at 16:39
1  
git log --stat origin/master..HEAD for a little extra awesomeness – CoryDanielson Mar 25 at 17:51

If you want to see all commits on all branches that aren't pushed yet, you might be looking for something like this:

git log --branches --not --remotes

And if you only want to see the most recent commit on each branch, and the branch names, this:

git log --branches --not --remotes --simplify-by-decoration --decorate --oneline
share|improve this answer
27  
Are you some kind of wizard? This is great. – agnoster Nov 26 '10 at 11:06
2  
And I thought I was a Git wizard. Can't upvote twice. – Andrey Tarantsov Jun 19 '12 at 3:35
why this answer was not accepted :( – Sadi Mar 12 at 6:27

You can show all commits that you have locally but not upstream with

git log @{u}..

@{u} or @{upstream} means the upstream branch of the current branch (see git rev-parse --help for details.

share|improve this answer
2  
Upvoting for @{u}. Where can I find out more about it please? – phunehehe May 8 '12 at 10:00
1  
BEST SOLUTION EVER. Works for master and topic branches. – lzap Aug 22 '12 at 11:35

You can do this with git log:

git log origin..

Assuming that origin is the name of your upstream, leaving off any revision name after .. implies HEAD, which lists the new commits that haven't been pushed.

share|improve this answer
Whenever I see an answer with git log and "2-dots-not-3", it always remind me of stackoverflow.com/questions/53569/… ;) – VonC Jan 6 '10 at 22:56
What a coincidence, me too! – Greg Hewgill Jan 6 '10 at 23:39

Handy alias for looking for unpushed commits in current branch:

unpushed = !GIT_CURRENT_BRANCH=$(git name-rev --name-only HEAD) && git log origin/$GIT_CURRENT_BRANCH..$GIT_CURRENT_BRANCH --oneline

What this basically does:

git log origin/branch..branch

but also determines current branch name.

share|improve this answer
very nice alias. Thank you for sharing it. – lucapette May 5 '11 at 9:01
This is awesome! For those unfamiliar with aliases just add them to your ~/.gitconfig file under the [alias] section. – Gary Haran Apr 15 at 15:07

I use the following alias to get just the list of files (and the status) that have been committed but haven't been pushed (for the current branch)

   git config --global alias.unpushed "diff origin/$(git name-rev --name-only HEAD)..HEAD --name-status"

then just do:

git unpushed
share|improve this answer

It is not a bug. What you probably seeing is git status after a failed auto-merge where the changes from the remote are fetched but not yet merged.

To see the commits between local repo and remote do this:

git fetch

This is 100% safe and will not mock up your working copy. If there were changes git status wil show X commits ahead of origin/master.

You can now show log of commits that are in the remote but not in the local:

git log HEAD..origin
share|improve this answer

I believe the most typical way of doing this is to run something like:

git cherry --abbrev=7 -v @{upstream}

However, I personally prefer running:

git log --graph --decorate --pretty=oneline --abbrev-commit --all @{upstream}^..

which shows the commits from all branches which are not merged upstream, plus the last commit in upstream (which shows up as a root node for all the other commits). I use it so often that I have created alias noup for it.

git config --global alias.noup 'log --graph --decorate --pretty=oneline --abbrev-commit --all @{upstream}^..'
share|improve this answer
This. Is. Awesome. Thank you for sharing! :) – cweekly Oct 16 '12 at 16:27

There is tool named unpushed that scans all Git, Mercurial and Subversion repos in specified working directory and shows list of ucommited files and unpushed commits. Installation is simple under Linux:

$ easy_install --user unpushed

or

$ sudo easy_install unpushed

to install system-wide.

Usage is simple too:

$ unpushed ~/workspace
* /home/nailgun/workspace/unpushed uncommitted (Git)
* /home/nailgun/workspace/unpushed:master unpushed (Git)
* /home/nailgun/workspace/python:new-syntax unpushed (Git)

See unpushed --help or official description for more information. It also has a cronjob script unpushed-notify for on-screen notification of uncommited and unpushed changes.

share|improve this answer
git diff origin

Assuming your branch is set up to track the origin, then that should show you the differences.

git log origin

Will give you a summary of the commits.

share|improve this answer

I suggest you go see the script https://github.com/badele/gitcheck, i have coded this script for check in one pass all your git repositories, and it show who has not commited and who has not pushed/pulled.

Here a sample result enter image description here

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.