Hi,
On Wed, 9 Apr 2008, Miklos Vajna wrote:
On Wed, Apr 09, 2008 at 04:06:57PM +0200, Johannes Schindelin [off-list ref] wrote:
quoted
quoted
I just wanted to see the list of merges since the last tag in a repo
where we have 1000+ commits and about 20 merges and found that there is
no easy way to do so.
I usually did something like this:
git log -1 $(git rev-list --parents | sed -n "s/ .* .*//p")
If you mean:
git log -1 $(git rev-list --parents HEAD | sed -n "s/ .* .*//p")
Yes, I meant "something like" that...
then it'll show only the first merge, --only-merges shows each merge.
(While of course you can still use -1 or tag.. or so.)
Yep, I wrote "-1", but what I actually meant was "--no-walk".
Sorry,
Dscho