我已经向 git responsitory 提交了几个变更集并推送了。
我可以在远程响应中看到我的变更集,但是在我克隆了一个新的存储库之后。
我看不到几个文件的最新更改。我只有一个分支。
$ git branch
* master
$ git log
showing all the logs in the right way
$ git log <filename1> #look at certain file <p>
It does not show the newest change on that file
$ git log --full-history <filename1> <p>
It is showing the newest change on that file
我希望我的文件获取最新的更改。
我该做什么?