Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the best way to get a log of commits on a branch since the time it was branched from the current branch? My solution so far is:

git log $(git merge-base HEAD branch)..branch

The documentation for git-diff indicates that git diff A...B is equivalent to git diff $(git-merge-base A B) B. On the other hand, the documentation for git-rev-parse indicates that r1...r2 is defined as r1 r2 --not $(git merge-base --all r1 r2).

Why are these different? Note that git diff HEAD...branch gives me the diffs I want, but the corresponding git log command gives me more than what I want.

In pictures, suppose this:

         x---y---z---branch
        /
---a---b---c---d---e---HEAD

I would like to get a log containing commits x, y, z.

  • git diff HEAD...branch gives these commits
  • however, git log HEAD...branch gives x, y, z, c, d, e.
share|improve this question
2  
Yet another case where git gets frustrating. In Mercurial you would simply type hg log -b <branch_name> and poof! that's it. – Kostas Jun 26 '12 at 9:28
You're using "git log" incorrectly for your purposes from what I can see. I have added my answer below. – Nocturne Nov 20 '12 at 2:32

5 Answers

up vote 87 down vote accepted

In the context of a revision list, A...B is how git-rev-parse defines it. git-log takes a revision list. git-diff does not take a list of revisions - it takes one or two revisions, and has defined the A...B syntax to mean how it's defined in the git-diff manpage. If git-diff did not explicitly define A...B, then that syntax would be invalid. Note that the git-rev-parse manpage describes A...B in the "Specifying Ranges" section, and everything in that section is only valid in situations where a revision range is valid (i.e. when a revision list is desired).

To get a log containing just x, y, and z, try git log HEAD..branch (two dots, not three). This is identical to git log branch --not HEAD, and means all commits on branch that aren't on HEAD.

share|improve this answer
10  
Wow, that's confusing. It turns out that using "git diff HEAD..branch" shows all commits (x, y, z, c, d, e), but "git log HEAD..branch" does exactly what I want and only shows x, y, z! This is the exact opposite of using "...". – Greg Hewgill Sep 10 '08 at 7:59
12  
git diff HEAD..branch is identical to git diff HEAD branch. The key thing to remember here is that log takes a list/range of revisions, while diff doesn't. That's why they treat their args differently. – Kevin Ballard Sep 11 '08 at 7:52
git cherry branch [newbranch]

does exactly what you are asking.

I am also very fond of:

git diff --name-status branch [newbranch]

Which isn't exactly what you're asking, but is still very useful in the same context.

share|improve this answer
Ah, that's a nice one too! – Greg Hewgill Nov 7 '08 at 21:48
5  
'git cherry' outputs a list of commit IDs. Can I convert these into a single diff combining all the changes in every commit? – Jonathan Hartley Jul 20 '11 at 15:44
1  
git cherry is very useful indeed. Thanks :) – jkp Aug 26 '11 at 12:14

This is similar to the answer I posted on: http://stackoverflow.com/questions/2176278/preview-a-git-push/2831135#2831135

Drop these funcs into your bash profile:

  • gbout - git branch outgoing
  • gbin - git branch incoming

You can use this like:

  • If on master: gbin branch1 <-- this will show you what's in branch1 and not in master
  • If on master: gbout branch1 <-- this will show you what's in master that's not in branch 1

This will work with any branch.

function parse_git_branch {
  git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'
}

function gbin { 
    echo branch \($1\) has these commits and \($(parse_git_branch)\) does not 
    git log ..$1 --no-merges --format='%h | Author:%an | Date:%ad | %s' --date=local
}

function gbout { 
    echo branch \($(parse_git_branch)\) has these commits and \($1\) does not 
    git log $1.. --no-merges --format='%h | Author:%an | Date:%ad | %s' --date=local
}
share|improve this answer
fantastic!!! +1 – Patrick Jul 25 '12 at 1:06
Seems very useful. – HerrSerker Jan 15 at 17:03

What you want to see is the list of outgoing commits. You can do this using

git log master..branchName 

or

git log master..branchName --oneline

Where I assume that "branchName" was created as a tracking branch of "master".

Similarly, to see the incoming changes you can use:

git log branchName..master
share|improve this answer
git log --cherry-mark --oneline from_branch...to_branch

(3dots) but sometimes it shows '+' instead of '='

share|improve this answer
3 dots shows the first commit on the branch twice while two does not. – TJ Biddle Oct 10 '12 at 23:17

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.