I\'m in a situation where some changes made in a feature branch are not reflected in master, even though this branch was merged into it. I\'m at a loss to understand why. For
If somehow the location of the file has changed, you might need to tell git log
to follow
:
$ git checkout master
$ git log --follow -- file | grep A
You can check if there is a difference between git log --oneline -- file
and git log --oneline --follow -- file
, to see if the file has been relocated.