Git extensions only the history of one file is different

Team

gitk filename 

You will see all the commits in which the file was modified.

Is this possible for git extensions? This view of the history with one file does this, unfortunately, shows the full history with all commits, and not just those that have effectively changed the file.

+7
git git-extensions
source share
2 answers

Found the setup by comparing the configuration of the Git extension with one of my colleagues:

 <key> <string>fullhistoryinfilehistory</string> </key> <value> <string>true</string> </value> 

I set the value to false, now it works as intended. Cannot find a GUI equivalent option in Git Extension, though ...

Edit: found! Not in the settings, but in the context menu in the file history → Full history: enable / disable full history in file history view mode

+17
source share

Are you really sure!?! I just checked, and when I make the history of a single file, from a file tree or diff tabs, I just have a commit history where this file was changed ...

0
source share

All Articles