I ran a 'git status' on a folder and it replied:
$ git status
On branch master
Your branch is up to date with 'origin/master'.
nothing to commit, working tree clean
However, running a git log failed to show the latest update that I know is there:
* e2f5a0b (HEAD -> master, origin/master, origin/HEAD) First version of all
* f11f989 Initial commit
so I ran 'git pull' and it brought down all updates:
* 057c274 (HEAD -> master, origin/master, origin/HEAD) update for ginger
* e2f5a0b First version of all
* f11f989 Initial commit
Have I failed to understand something with git? Is it because Git status only works on the current folder - all my updates were in a sub-directory?
Note, the only thing I can see and this might just be a red-herring, is when I look on the web server (I'm using gitlab) I can see the update but on trying to view file history it tells me all the files that have changed but fails to show a diff on them (I did read diff has issues with utf16 but that wouldn't explain this fault?)
thanks for any help.
[EDIT]Note, when I look in the history, it says 'binary files differ', but these are all .SQL text files saved simply by ssms.