-
Notifications
You must be signed in to change notification settings - Fork 427
Description
I use Glogg as a file viewer on windows, due to its extremely good handling of very large files.
From a Java project, we create some huge "report files" which are checked into git.
However, I do get some problems with git, as glogg evidently (quite obviously, given its "log viewer" main feature) keeps the files open. This works for the Java-task that writes to the file, as it evidently just truncs the file before writing a new report - nicely being caught by Glogg which reloads it instantly.
However, when handling the files with git (e.g. checkout, pull/rebase, whatever), it fails miserably, as git evidently unlinks (deletes) the file before putting in new content. This is not possible when glogg is active - and since I view these files all the time, this becomes a "oh, dang!" moment basically every single time I perform anything with git.
An (optional) feature where it would be possible to let Glogg not hold the file open, while still detecting changes and reloading, would for my use case be very valuable!