github合并源和主存储库

时间:2011-06-15 20:38:22

标签: git cygwin

我在github上有主存储库。我创建了一个fork。我创建了一个分支并进行了一些更改并在github上提交/推送。现在我需要合并主存储库和我的分支。我怎样才能合并两者。我创建了主要repositroy的克隆。我试图做的时候

git pull origin branchname

我得到了

  0 [main] us 0 init_cheap: VirtualAlloc pointer is null, Win32 error 487

AllocationBase 0x9A0000,BaseAddress 0x9E0000,RegionSize 0x140000,State 0x2000

C:\ Program Files(x86)\ Git \ bin \ sh.exe: * 无法为cygwin的h预留空间 eap,Win32错误0

请建议我如何合并?

1 个答案:

答案 0 :(得分:0)

我认为工作流程是这样的:

git clone http://remote rep here
... Do work ...
git branch temp
git checkout temp
git pull http://remote rep here
git checkout master
git merge temp