On 06/01/2019 22:51, Jacob Kroon wrote:
Hi, Not sure if this has already been reported, but I observe this odd behaviour in gitk from master: git status gitk # everything looks good touch <file-under-version-control> gitk # gitk shows "local uncomitted changes" on the file I touched git status gitk # gitk is back to normal again, showing no local uncommitted changes The issue has been discussed on stackoverflow here: https://stackoverflow.com/questions/49990403/after-tar-untar-of-git-repo-gitk-shows-local-uncommitted-changes-not-checked Any chance gitk could be changed to so that it doesn't display the "local uncommitted changes" blob in this case ? Regards Jacob
I believe this is doing the right thing (TM) at the level of investigation that gitk uses to determine the status of the files. In particular, Git uses the modified time stamp as a surrogate indication for detecting that the user has probably edited the file (it's been modified at time hhmmss, right?).
Now as I understand it, the full (without limiting options) git status command does go and check the content of anything that's potentially changed (but it can be costly), and at that point the status command simply updates its 'Index' record with the new mtime after noticing that nothing had really changed. Meanwhile, gitk, being a continuously running GUI avoids the overhead of the git status (though you can force it) and does report the mtime change as being a potential file modification.
There is a separate discussion on the git users forum regarding the compatibility with other tools that has a similar root cause in the use and abuse of mtime as a canary for modification, given that the Git repo storage does not record any file times, so will get a (moderately) arbitrary mtime & ctime when checked out.
-- Philip