Question: In git, how does see the difference between the current state of a file and the most recent commit before a specific timestamp (i.e.: yesterday at 2pm)? I'm specifically interested in getting the total changed words (similar to the total changed lines lines +/-).
Use case. The use case I'm after is being able to track how much writing progress I've made relative to a date. In writing, the unit of progress is typically "words changed" as opposed to "lines changed" (other posts on StackOverflow cover lines changed, but not words changed).
Example. So for example, if I've added 200 words to file.txt and deleted 100 words since yesterday at 2pm, I'd like the result of this command to be something like "+200/-100".