After merges when I do
git log <filename.ext>
some logs entries are omitted due to History Simplification.
but
git log --full-history <filename.ext>
gets me what I want.
Is there a way to force --full-history on git log without all my developers having to perform certain step ?
OR
Is there a way for force this in WebStorm via some configuration (since we can enforce this) ?
OR
Is there a way to do a merge (--no-ff did not work) so that --full-history is not required ?