Git说一切都是最新的,但是源树的一个节点的副本上缺少一个文件。在系统A:
$ ls -l
abc.py
xyz.py
$ git add xyz.py
$ git status
nothing added to commit...
$ git commit
nothing added to commit...
$ git push
Everything up-to-date
在系统B上:
$ git pull
Already up-to-date
$ ls -l
abc.py
我的问题是:系统B上的xyz.py文件发生了什么变化?为什么拉不在系统B上创建?