First of all, I must say that I'm quite new with Git. So I don't know all the tips&tricks yet... I have a following problem:
In a file I have certain rcs-keywords (for example $Date$, $Author$ and $Commit$). These keywords are supposed to be updated by using a smudge filter. The filter itself works as planned and requested information is updated into the file. But the issue is that it seems that when taking a pull (using Git Extensions) and the files are filtered through the smudge filter the data updated into the files is not the latest one (it's from the 2nd newest/latest commit). After the pull if I execute the commands that are doing the magic in the filter manually, the data is correct.
The question is: is there any way to get this latest/newest data updated into the files in a way I'm doing now?
And the way I'm doing it right now goes pretty much as instructed in https://github.com/kimmormh/git-rcs-keywords (some small changes related OS, I'm using Windows, and file paths including spaces).
Thanks in advance!