Re: Git log print commits between a revision range (inclusive)

2019-03-05 Thread Junio C Hamano
Rafael Ascensão writes: > As Junio mentioned, "A..B" means all commits reachable from B except those > reachable from A. Understanding this is just a way to say "B --not A" is > important to know you can take advantage of: > > `--boundary` > Output excluded boundary commits. Boundary commits

Re: Git log print commits between a revision range (inclusive)

2019-03-05 Thread Rafael Ascensão
As Junio mentioned, "A..B" means all commits reachable from B except those reachable from A. Understanding this is just a way to say "B --not A" is important to know you can take advantage of: `--boundary` Output excluded boundary commits. Boundary commits are prefixed with -. In other words,

Re: Git log print commits between a revision range (inclusive)

2019-03-03 Thread Junio C Hamano
wuzhouhui writes: > I want to know how to display logs between a revision range (both > start and end are inclusive). I searched it and only found[1], > which doesn't resolve my problem completely, because > > git log .. > > doesn't contains the log of . $ git log maint --not v2.20.0^@ gives

Re: Git log print commits between a revision range (inclusive)

2019-03-03 Thread wuzhouhui
> -Original Messages- > From: wuzhouhui > Sent Time: 2019-03-04 15:28:13 (Monday) > To: git@vger.kernel.org > Cc: > Subject: Git log print commits between a revision range (inclusive) > > Hi, > > I want to know how to display logs between a revision r

Git log print commits between a revision range (inclusive)

2019-03-03 Thread wuzhouhui
Hi, I want to know how to display logs between a revision range (both start and end are inclusive). I searched it and only found[1], which doesn't resolve my problem completely, because git log .. doesn't contains the log of . So, how to display logs between a revision range that both start an