On 8/21/06, Jeff Latimer lats@yless4u.com.au wrote:
If CVS goes, is there another way to see what patches have been applied to the tree? The git does not seem to do that for me and cvs.winehq.org is a fairly easy lookup.
Jeff
To visualize the history just do something like this.
$ gitk --since="6 days ago" dlls/
And you will see all commits made to the dlls directory over the past six days.
$ gitk --since="3 weeks ago" dlls/
And you will see all commits made to the dlls directory over the past three weeks.
You can change the number of days or weeks to fit your needs.
Tom