What does the Already up-to-date
message actually mean? Quite often when I do pull
I get this message although I'm positive something has changed, and in fact when I look at the source files something has changed.
Is there anyway to force git to always show me everything that changes in the working directory as a result of a merge/pull or whatever operation. I'm guessing this might relate to fast-forward operations: I want them to appear like a merge and show me the files which have been changed.
Example
DirA> git push Repo
DirB> git pull Repo
DirB> git add somefile.txt
DirB> git commit
DirB> git push Repo
DirA> git pull Repo
"Already up-to-date"
The message appears even though somefile.txt
has indeed been updated in DirA
. That is, DirA
was not actually up-to-date and a change has actually been made.