2

背景:

  • 在一个网络中,有两台 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 fetchgit pull命令出现问题时,会显示消息Already up-to-date
  • 但是,在 Windows PC 中所做的任何更改都不会出现在 Ubuntu PC 中。

问题

  • 从 Windows PC 到 Ubuntu PC 的更新文件应该采用什么路径?
4

1 回答 1

0

我习惯在提交后执行“git push”。

我将创建一个由 Windows 机器和 Ubuntu 机器共享的裸存储库。然后,我会在您提交更改后修改您的说明以包含“git push”。然后你可以使用 gitk 来确保一切都是最新的。顺便说一句,我发现在 Windows 下访问 git 的最佳方法是使用 cygwin。

我创建在 Windows 和 Unix/Linux 之间共享的裸存储库的方法是:

cd /cygdrive/c/source
git clone --bare --no-hardlinks -l . /cygdrive/s/shareddir/source.git

要将新的裸存储库连接回原始源代码:

cd /cygdrive/c/source
git remote add origin /cygdrive/s/shareddir/source.git
git remote update
git remote -v
git branch --set-upstream master origin/master
于 2012-10-24T13:59:59.330 回答