How to list unpushed Git commits (local but not on origin)
Asked Answered
S

27

2297

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?

Sharpnosed answered 6/1, 2010 at 22:41 Comment(7)
Starting with Git 2.5+ (Q2 2015), the actual answer would be git log @{push}... See that new shortcut @{push} (referencing the remote tracking branch you are pushing to) in my answer belowOw
@Torek - yet another simple task made difficult by Git. Every time a Git question shows up with hundreds or thousands of upvotes and millions of views, then someone should think: Wow, we really screwed up that workflow. Alas, the Git dev's have omitted the feedback step in the development life cycle, so the feedback is not incorporated. Instead, they keep making the same mistakes over and over again. For this question, git status --all should have appeared in 2010; or git status -v should actually provide the verbose output that includes the extra information.Fabre
I disagree that "git status -v" should provide this information because it is intended to give status about the working tree, as it relates to the checked out branch only. However, see the answer below about "git branch -v", which I believe should be the accepted answerStuder
This particular StackOverflow question has the highest number of correct answers that all work yet don't make any sense.Cockaigne
@jww: I agree. I have moved back to using git after using mercurial. Compared to the ease-of-use and elegance of mercurial, git is an adulterated messTrefor
I read all the answers hoping to find out why in all cases but my latest repo "git status" shows push/unpushed status, but why my latest repo does not. I did not find an answer: Using old repo, here is an example of an "all pushed result": On branch master Your branch is up to date with 'origin/master'. Here is what it looked like with a change: On branch master Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits). However, my newest repo does none of that...it does not show pushed/unpushed status.Sherlene
I found my resolution: When setting up my previous repos I had used this command, adding it solved: git push --set-upstream origin masterSherlene
I
2285

This gives a log of all commits between origin/master and HEAD:

git log origin/master..HEAD

When HEAD is on the master branch, this gives a log of unpushed commits.


Similarly, to view the diff:

git diff origin/master..HEAD
Ionize answered 6/1, 2010 at 22:50 Comment(18)
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.Sharpnosed
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; doneWomanish
@Jamie, What is the eye candy version supposed to do?Soup
git log --stat origin/master..HEAD for a little extra awesomenessTendentious
You should omit the branch name, as you may be on another branch: git diff HEADMissymist
This is not the best solution. Origin/master may not always the upstream branch. A better solution is to use @{u} instead of "origin/master" to indicate the upstream branch. Since HEAD is implied by default, one can leave that out too. See @Ben Ling's answer. Outgoing changes: git log @{u}.. Incoming changes: git log ..@{u}Skirling
@Nocturne I just want to point out that when this answer was posted, the @{u} syntax wasn't available yet, it only became available on February 12, 2010. Also, @{u} won't work if the local branch isn't configured with an upstream. Finally, @{u} doesn't currently have tab completion support, <remote>/<branch> with tab completion remains one of the fastest ways to get this information, and it will work whether an upstream is configured or not.Oddson
Can this be customized to show only your own commits?Occupant
I like to do "git diff origin/MYBRANCH..HEAD | grep index" to just see how many commits I am ahead of origin/MYBRANCHPoltergeist
How to do that in Tortoise Git?Donation
Note that git diff @{push}..HEAD will NOT show the local changes, but difference between current upstream position and your HEAD. So you will also see the upstream progress (reverted). To see only local changes, use 3 dots: git diff @{push}...HEAD. See git diff docs for detailsRestrain
check out @VonC's answer, it's got the point. IMO it's more preferable way to check against repo/branch that you push to, not pull from.Sunglass
This is the weirdest syntax I've ever seen.Cockaigne
by example git log @{u}.. -p One of the most useful options is -p, which shows the differences introduced in each confirmationGarry
Note that "main" may have to be used instead of "master" now.Harmsworth
Worked for me using git version 2.30.1.windows.1Rebate
This is not correct. It shows every commit from oldest unpushed to newest, but some of those commits may have been pushed and merged. The solution from cxreg is correct: git log --branches --not --remotes.Partin
@DavidFox Thanks. There is another issue with the proposed solution: it ignores commits done in the other branches but not pushed yet. Your solution (actually cxreg's) git log --branches --not --remotes lists them as expected.Notability
S
883

To see all commits on all branches that have not yet been pushed:

git log --branches --not --remotes

To see the most recent commit on each branch, as well as the branch names:

git log --branches --not --remotes --simplify-by-decoration --decorate --oneline
Snick answered 26/7, 2010 at 20:36 Comment(9)
This is awesome. In a related scenario I had two local branches with two upstream branches, and one local hand been merged into the other. I wanted to know which commits were safe to rebase, but the normal git log master..HEAD wouldn't work since there were multiple upstreams. This post led me to git log MyBranch --not --remotes to show all the commits that have not been pushed to any upstream in a single branch.Hectogram
I understand that your second command is also listing the commits that aren't pushed yet, only it shows just one per branch.Pollie
--decorate shows the branches as well. --graph makes it even more obvious.Petroglyph
Note that these commands list only commits that haven't been pushed in any branch. Example: say you have branch develop with branch feat-NewThing. You make changes locally to feat-NewThing. (Log has changes.) You then push feat-newThing to it's remote branch. (Log is empty). You merge local feat-newThing to develop locally. Assuming a fast-forward, the log still has no changes.Talaria
This is the actual solution. The only one that works generally without the need to specify a branch or the need to have an upstream defined.Equanimity
This works also even if no upstream has been configured for a branch.Mediaeval
@Hectogram Couldn't this also be git log HEAD --not --remotes for the current branch?Mediaeval
How to use not pushed commits, old commits which I can see git log --branches --not --remotes. If I check out the branch, I got pushed version from remote, but I would like to use my local commited not pushed version.Boric
does not work here... while "git log origin/xyz..xyz" shows a unpushed local commit, "git log --branches --not --remotes" does NOT!Dinh
Z
390

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 or git help revisions for details).

Zachariahzacharias answered 18/11, 2011 at 12:19 Comment(4)
On Windows, I needed to enclose the final argument in quotes, like: git log "@{u}.."Vineyard
git log @{u}.. -p One of the most useful options is -p, which shows the differences introduced in each confirmation.Garry
Possibly better git log @{push}.. , see another answer.Ascarid
I found this one is the best answer. I also found that there is no way on Earth I'll remember it without a cheat sheet. Why didn't the git devs chose something obvious, and in line with git status, since we want to know the status of a situation. git status -v would have made so much more sense.Metacarpus
P
271
git cherry -v 

Taken from: Git: See all unpushed commits or commits that are not in another branch.

Proleg answered 17/12, 2013 at 1:15 Comment(5)
I think this should be the main answer as this one gives the more succinct list of commits instead of, hard to read, verbose difference in all the files !!Wits
git-cherry - "Find commits yet to be applied to upstream", seems to provide what the OP was asking for, but with only commit subject rather than the entire commit message.Birth
It's worth noting that this will only tell you if there are unpushed commits on the branch you have currently checked out. It will not tell you if you have a local branch (not currently checked out) with unpushed commits.Seitz
Best answer here. Would upvote it 5 times if I couldDenisdenise
I'm not sure why folks like this answer, as it doesn't work as it lays for what the OP asked for--heck, I used it on a branch I haven't pushed, and it says it "could not find a tracked remote branch," which the poster didn't have either. The accepted answer did work great for me. git diff origin/main..HEAD FTWMeany
F
87
git log origin/master..

This assumes that origin is the name of your upstream remote and master is the name of your upstream branch. Leaving off any revision name after .. implies HEAD, which lists the new commits that haven't been pushed. [git log]

Fingerprint answered 6/1, 2010 at 22:46 Comment(5)
Whenever I see an answer with git log and "2-dots-not-3", it always remind me of stackoverflow.com/questions/53569/… ;)Ow
Just to add it to the answer - if there is no upstream setup this command result in saying no upstream was setup. Run git branch --set-upstream master origin/<branch> to setup upstream if you are inclined to use this command to see commits that are staged.Crankshaft
This will compare with default branch in origin, not current remote branch.Salita
fatal: ambiguous argument 'origin..': unknown revision or path not in the working tree.Ambsace
Nope, it shows all latest commits that differ, but does not answer the original Q.Metacarpus
O
69

All the other answers talk about "upstream" (the branch you pull from).
But a local branch can push to a different branch than the one it pulls from.

A master might not push to the remote-tracking branch "origin/master".
The upstream branch for master might be origin/master, but it could push to the remote tracking branch origin/xxx or even anotherUpstreamRepo/yyy.
Those are set by branch.*.pushremote for the current branch along with the global remote.pushDefault value.

It is that remote-tracking branch that counts when seeking unpushed commits: the one that tracks the branch at the remote where the local branch would be pushed to.
The branch at the remote can be, again, origin/xxx or even anotherUpstreamRepo/yyy.

Git 2.5+ (Q2 2015) introduces a new shortcut for that: <branch>@{push}

See commit 29bc885, commit 3dbe9db, commit adfe5d0, commit 48c5847, commit a1ad0eb, commit e291c75, commit 979cb24, commit 1ca41a1, commit 3a429d0, commit a9f9f8c, commit 8770e6f, commit da66b27, commit f052154, commit 9e3751d, commit ee2499f [all from 21 May 2015], and commit e41bf35 [01 May 2015] by Jeff King (peff).
(Merged by Junio C Hamano -- gitster -- in commit c4a8354, 05 Jun 2015)

Commit adfe5d0 explains:

sha1_name: implement @{push} shorthand

In a triangular workflow, each branch may have two distinct points of interest: the @{upstream} that you normally pull from, and the destination that you normally push to. There isn't a shorthand for the latter, but it's useful to have.

For instance, you may want to know which commits you haven't pushed yet:

git log @{push}..

Or as a more complicated example, imagine that you normally pull changes from origin/master (which you set as your @{upstream}), and push changes to your fork (e.g., as myfork/topic).
You may push to your fork from multiple machines, requiring you to integrate the changes from the push destination, rather than upstream.
With this patch, you can just do:

git rebase @{push}

rather than typing out the full name.

Commit 29bc885 adds:

for-each-ref: accept "%(push)" format

Just as we have "%(upstream)" to report the "@{upstream}" for each ref, this patch adds "%(push)" to match "@{push}".
It supports the same tracking format modifiers as upstream (because you may want to know, for example, which branches have commits to push).

If you want to see how many commit your local branches are ahead/behind compared to the branch you are pushing to:

git for-each-ref --format="%(refname:short) %(push:track)" refs/heads
Ow answered 8/6, 2015 at 22:43 Comment(0)
S
58

I had a commit done previously, not pushed to any branch, nor remote nor local. Just the commit. Nothing from other answers worked for me, but with:

git reflog

There I found my commit.

Starlet answered 17/3, 2017 at 11:40 Comment(2)
As stated in this link git-scm.com/docs/git-reflog, Reference logs, or "reflogs", record when the tips of branches and other references were updated in the local repository. In my case, i cloned a repo, created a new branch, deleted the branch, created a new one, created a commit and changed the commit. All these steps where recored as HEAD@{0}: commit (amend) : .. HEAD@{1}: commit: ... HEAD@{2}: checkedout: moving from...to ... HEAD@{3}: checkedout: moving from...to ... HEAD@{4}: clone: from #sorry for the format SO does not allow multilines in comments apparentlySunglasses
this includes the origin commits as well, the best solution would be use the command provided by @PlagueHammer (https://mcmap.net/q/12348/-how-to-list-unpushed-git-commits-local-but-not-on-origin)Barbabas
F
44

Handy git alias for looking for unpushed commits in current branch:

alias 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.

Frontal answered 3/3, 2011 at 9:34 Comment(5)
This is awesome! For those unfamiliar with aliases just add them to your ~/.gitconfig file under the [alias] section.Pyrology
Copy/paste in bash doesn't work, but the script is quite useful and understandableSalita
This is not a bash alias, as @GaryHaran points out. There's a git command for adding aliases as well: git alias <alias-name> <command> In this case, the command should be surrounded by single quotes, to escape special characters from the shell.Cychosz
That would be: git config --global alias.unpushed '!GIT_CURRENT_BRANCH=$(git name-rev --name-only HEAD) && git log origin/$GIT_CURRENT_BRANCH..$GIT_CURRENT_BRANCH --oneline'Araliaceous
That seems basically the same as git log @{u}.. , though - see another answer.Ascarid
P
40

You could try....

gitk

I know it is not a pure command line option but if you have it installed and are on a GUI system it's a great way to see exactly what you are looking for plus a whole lot more.

(I'm actually kind of surprised no one mentioned it so far.)

Prototype answered 27/1, 2014 at 21:4 Comment(4)
gitk --all for view all branches.Petroglyph
tig is the ncurses alternative.Petroglyph
@justin-ohms gitk is awesome! Never knew this exists! Handy to browse through changes in a nice UI.Egotist
@ray tig is most useful in a 'terminal only' situation - where you don't get access desktop GUI. Learning about it for the first time! INTERESTING: tig is REVERSE of git !Egotist
M
33

git branch -v will show, for each local branch, whether it's "ahead" or not.

Macfadyn answered 20/6, 2015 at 11:8 Comment(4)
Yes, in case there is an unpushed commit on branch devel, the corresponding line will be * devel 8a12fc0 [ahead 1] commit msg (* will be only on the line corresponding to the checked out branch). ahead 1 means "ahead by one commit", i.e. there is one unpushed commit.Fax
Isn't it git branch -vv? Cf. docs: “If given twice, print the name of the upstream branch, as well (see also git remote show <remote>).”Devlin
This is not about printing the name of the upstream branch, but just about printing behind and/or ahead for each local branch, which is enough to solve OP's problem (detecting unpushed commits). git branch -v is enough for that, just tested again with Git 2.16.2 :)Fax
The -vv is useful because with it shows a difference between the branches which are up-to-date with the remote and those which haven't been pushed at all. (With just one -v, they show up identically in the display.)Paiz
V
24

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
Vincentvincenta answered 20/7, 2012 at 19:24 Comment(3)
looks interesting, but $(git name-rev --name-only HEAD) is "undefined" in my caseFeatherbedding
I hade to change diff to git diff, because it was using diff (GNU diffutils) 3.7 by defaultDamaraland
You can use the 'FETCH_HEAD' reference instead: git config --global alias.unpushed "log FETCH_HEAD..HEAD"Sexless
U
15

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}^..'
Urbanist answered 9/2, 2012 at 11:37 Comment(0)
A
14
git cherry -v

This will list out your local comment history (not yet pushed) with corresponding message

Atahualpa answered 11/3, 2015 at 18:48 Comment(1)
Duplicate answer on same question.Eleemosynary
G
12

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

Gareth answered 27/4, 2013 at 12:27 Comment(5)
Could you please explain how to get this plugin to work on Windows machine? I am trying to run pip, but the command is missing in command line. I got Python installed, but I am not sure if it is enough.Occasional
@KonradSzałwiński I haven't windows machine, but in this topic ( stackoverflow.com/questions/4750806/… ), the user seem answer at your question :). But i haven't tested in windows and i'm not sure it work it.Laveen
@KonradSzałwiński the ChristianTremblay github contributor has added a windows support. Now the gitcheck work on windows. You can download it on github.com/badele/gitcheckLaveen
Now, you can also use gitcheck directly from an docker container (with your files in your host) For more information see the gitcheck github projectLaveen
Thanks for posting this, it seems really useful. I tried installing but after installation I can't find the location of the script to run it. $ pip install git+git://github.com/badele/gitcheck.git Collecting git+git://github.com/badele/gitcheck.git Cloning git://github.com/badele/gitcheck.git to c:\users\u6041501\appdata\local\temp\pip-bxt472z_-build Installing collected packages: gitcheck Running setup.py install for gitcheck: started Running setup.py install for gitcheck: finished with status 'done' Successfully installed gitcheck-0.3.22Gullah
W
9

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
Wardwarde answered 6/1, 2010 at 22:47 Comment(0)
H
8

This worked better for me:

git log --oneline @{upstream}..

or:

git log --oneline origin/(remotebranch)..
Hindemith answered 17/6, 2015 at 18:20 Comment(1)
For anyone else wondering, @{upstream} is literal (upstream is a magic word), while remotebranch is just the name of your branch.Midget
U
7

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.

Upside answered 26/4, 2012 at 18:4 Comment(0)
G
7

To list all unpushed commit in all branches easily you can use this command:

 git log --branches  @{u}..
Guinn answered 20/5, 2015 at 8:59 Comment(0)
P
4

If the number of commits that have not been pushed out is a single-digit number, which it often is, the easiest way is:

$ git checkout

git responds by telling you that you are "ahead N commits" relative your origin. So now just keep that number in mind when viewing logs. If you're "ahead by 3 commits", the top 3 commits in the history are still private.

Pediculosis answered 1/5, 2014 at 19:49 Comment(0)
S
4

Similar: To view unmerged branches:

git branch --all --no-merged

Those can be suspect but I recommend the answer by cxreg

Stated answered 31/3, 2015 at 14:1 Comment(0)
M
4

one way of doing things is to list commits that are available on one branch but not another.

git log ^origin/master master
Markusmarl answered 4/11, 2015 at 13:18 Comment(2)
What does the '^' character do?Singletree
@AranMulholland it stands for not here.Markusmarl
P
4

I'm really late to the party, and I'm not sure when it was implemented, but to see what a git push would do, just use the --dry-run option:

$ git push --dry-run
To ssh://bitbucket.local.lan:7999/qarepo/controller.git
   540152d1..21bd921c  imaging -> imaging
Pathoneurosis answered 26/8, 2021 at 1:42 Comment(0)
O
3

As said above:

git diff origin/master..HEAD

But if you are using git gui

After opening gui interface, Select "Repository"->Under that "Visualize History"

Note: Some people like to use CMD Prompt/Terminal while some like to use Git GUI (for simplicity)

Overliberal answered 12/3, 2020 at 14:41 Comment(1)
visualize option in git gui is the one.Kattegat
L
0

If you have git submodules...

Whether you do git cherry -v or git logs @{u}.. -p, don't forget to include your submodules via git submodule foreach --recursive 'git logs @{u}..'.

I am using the following bash script to check all of that:

    unpushedCommitsCmd="git log @{u}.."; # Source: https://stackoverflow.com/a/8182309

    # check if there are unpushed changes
    if [ -n "$($getGitUnpushedCommits)" ]; then # Check Source: https://stackoverflow.com/a/12137501
        echo "You have unpushed changes.  Push them first!"
        $getGitUnpushedCommits;
        exit 2
    fi

    unpushedInSubmodules="git submodule foreach --recursive --quiet ${unpushedCommitsCmd}"; # Source: https://stackoverflow.com/a/24548122
    # check if there are unpushed changes in submodules
    if [ -n "$($unpushedInSubmodules)" ]; then
        echo "You have unpushed changes in submodules.  Push them first!"
        git submodule foreach --recursive ${unpushedCommitsCmd} # not "--quiet" this time, to display details
        exit 2
    fi
Luxurious answered 24/1, 2021 at 9:44 Comment(0)
C
-2

Here's my portable solution (shell script which works on Windows too without additional install) which shows the differences from origin for all branches: git-fetch-log

An example output:

==== branch [behind 1]

> commit 652b883 (origin/branch)
| Author: BimbaLaszlo <[email protected]>
| Date:   2016-03-10 09:11:11 +0100
|
|     Commit on remote
|
o commit 2304667 (branch)
  Author: BimbaLaszlo <[email protected]>
  Date:   2015-08-28 13:21:13 +0200

      Commit on local

==== master [ahead 1]

< commit 280ccf8 (master)
| Author: BimbaLaszlo <[email protected]>
| Date:   2016-03-25 21:42:55 +0100
|
|     Commit on local
|
o commit 2369465 (origin/master, origin/HEAD)
  Author: BimbaLaszlo <[email protected]>
  Date:   2016-03-10 09:02:52 +0100

      Commit on remote

==== test [ahead 1, behind 1]

< commit 83a3161 (test)
| Author: BimbaLaszlo <[email protected]>
| Date:   2016-03-25 22:50:00 +0100
|
|     Diverged from remote
|
| > commit 4aafec7 (origin/test)
|/  Author: BimbaLaszlo <[email protected]>
|   Date:   2016-03-14 10:34:28 +0100
|
|       Pushed remote
|
o commit 0fccef3
  Author: BimbaLaszlo <[email protected]>
  Date:   2015-09-03 10:33:39 +0200

      Last common commit

Parameters passed for log, e.g. --oneline or --patch can be used.

Craggie answered 25/5, 2017 at 6:45 Comment(0)
F
-5
git show

will show all the diffs in your local commits.

git show --name-only

will show the local commit id and the name of commit.

Ferrochromium answered 25/4, 2014 at 6:2 Comment(1)
git show only shows the most recent commit, whether it's been pushed to the remote or not, it won't show you all of your unpushed commits.Oddson
I
-6
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.

Illume answered 6/1, 2010 at 22:46 Comment(1)
git log origin will show you commits that have already been pushed, but it will not show commits that haven't been pushed, which is more along the lines of what the original poster was asking for.Oddson

© 2022 - 2024 — McMap. All rights reserved.