On 08/31/2017 08:36 AM, Kevin Daudt wrote: > On Wed, Aug 30, 2017 at 11:25:00PM +0200, Aleksandar Pavic wrote: >> I have a file >> >> app/Controller/CustomerCardVerificationController.php >> >> And when I take a look at changes log, I get this (no matter which tool I >> use): >> >> 2017-07-31 19:41 dule o membership renew payment email >> 2017-06-07 08:59 Dusan Tatic o cc refund clean >> 2017-04-15 00:16 Miodrag Dragić o refound admin payment >> 2017-03-20 12:02 Dusan Tatic o CardVerification card connect >> 2017-03-16 15:59 Aleksandar Pavic o paypal >> 2017-03-10 13:34 Aleksandar Pavic o Production branch >> 2017-03-10 13:01 Aleksandar Pavic I Migrating dev >> >> However if I manually browse thru revisions and open revision from >> 03/27/2017 07:05 PM >> >> I can see the change in that file which is unlisted above, at revision >> ff9f4946e109bd234d438e4db1d319b1f6cb6580 I am not sure if I fully understand but I guess your commit ff9f4946e1 has been commited at detached HEAD. You could do git log --oneline --graph master ff9f4946e1 to see where the "missing" commit lies. And probably a git cherry-pick ff9f4946e1 might pick your missing feature. Stephan