背景:
- 在一个网络中,有两台 PC,一台使用 Windows 7,另一台使用 Ubuntu 12.10 作为操作系统。
- 两者都安装了 Git。来自http://git-scm.com/download/win的 Windows和来自
apt-get install git-core
. - Ubuntu PC 配置了 Samba,以便可以使用其主机名访问网络中的 Windows PC。
- 使用
git clone http://windowspc/system/.git
,可以在 Ubuntu PC 中从 Windows PC 创建存储库的克隆。
问题:
- 对 Windows PC 中的代码进行了更改。命令
git add .
和git commit -m"Comment."
在 Windows PC 的 Git 提示符下发出。 - 回到 Ubuntu PC,当
git fetch
和git pull
命令出现问题时,会显示消息Already up-to-date
。 - 但是,在 Windows PC 中所做的任何更改都不会出现在 Ubuntu PC 中。
问题
- 从 Windows PC 到 Ubuntu PC 的更新文件应该采用什么路径?