背景
apt-get install git-core
的Ubuntu。git clone http://windowspc/system/.git
,可以在Ubuntu PC中从Windows PC创建存储库的克隆。问题:
git add .
和git commit -m"Comment."
是在Windows PC的Git提示符中发出的。git fetch
和git pull
命令出现问题时,会显示消息Already up-to-date
。问题
答案 0 :(得分:0)
在做完提交后我习惯做'git push'。
我会创建一个由Windows机器和Ubuntu机器共享的裸存储库。然后,我会在您提交更改后修改您的说明以包含“git push”。然后,您可以使用gitk确保一切都是最新的。 BTW我发现在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