I am using the below command :
git log --stat --decorate=full --since=<date>
Can you please let me know if the above command will list all the
commits and would not skip any of the commits due to History
Simplification. Any help would be very useful.
Regards,
Dinesh
On Mon, Dec 17, 2012 at 6:33 PM, Dinesh Subramani
[off-list ref] wrote:
I am using the below command :
git log --stat --decorate=full --since=<date>
Can you please let me know if the above command will list all the
commits and would not skip any of the commits due to History
Simplification. Any help would be very useful.
If my memory is still functioning, history simplification only takes
place when you specify pathspec. The above command does not have
pathspec, so no history simplification.
--
Duy
On Mon, 17 Dec 2012 17:03:09 +0530, Dinesh Subramani [off-list ref] wrote:
I am using the below command :
git log --stat --decorate=full --since=<date>
Can you please let me know if the above command will list all the
commits and would not skip any of the commits due to History
Simplification. Any help would be very useful.
The way I understand the man page, to disable history simplification you have
to use --full-history --sparse.