Re: Possibly a bug

2013-11-17 Thread Jeff King
On Sun, Nov 17, 2013 at 04:59:20AM +0200, Jiergir Ogoerg wrote:

 As suggested by the git book/tutorial I cloned simplegit-progit to
 learn using git.
 The issue:
 git log --since=5.years
 yields 2 commits, while
 git log --since=6.years
 yields 3 commits, despite the Date in both cases being March 2008.
 Is it a bug?

No, but it is confusing.

The `--since` and `--until` flags use the committer date, not the author
date. Try `git log --pretty=fuller`, and you will see that the author
and committer dates do not match for the top two commits (their
committer date is within 5 years).

Usually the two dates are the same, but they can be different if a
commit is rebased, or applied via patch.

-Peff
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Possibly a bug

2013-11-16 Thread Jiergir Ogoerg
Hi,
As suggested by the git book/tutorial I cloned simplegit-progit to
learn using git.
The issue:
git log --since=5.years
yields 2 commits, while
git log --since=6.years
yields 3 commits, despite the Date in both cases being March 2008.
Is it a bug?

Using Fedora 20 amd64 with git version 1.8.4.2


Details:
//== FIVE YEARS
simplegit-progit$ git log --since=5.years
commit ca82a6dff817ec66f44342007202690a93763949
Author: Scott Chacon scha...@gmail.com
Date:   Mon Mar 17 21:52:11 2008 -0700

changed the verison number

commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7
Author: Scott Chacon scha...@gmail.com
Date:   Sat Mar 15 16:40:33 2008 -0700

removed unnecessary test code
//== FIVE YEARS

//== SIX YEARS
simplegit-progit$ git log --since=6.years
commit ca82a6dff817ec66f44342007202690a93763949
Author: Scott Chacon scha...@gmail.com
Date:   Mon Mar 17 21:52:11 2008 -0700

changed the verison number

commit 085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7
Author: Scott Chacon scha...@gmail.com
Date:   Sat Mar 15 16:40:33 2008 -0700

removed unnecessary test code

commit a11bef06a3f659402fe7563abf99ad00de2209e6
Author: Scott Chacon scha...@gmail.com
Date:   Sat Mar 15 10:31:28 2008 -0700

first commit
//== SIX YEARS
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html