将来自Assembla的源连接到GitHub

时间:2013-03-07 13:37:00

标签: github assembla

我正在为我的项目使用Assembla(使用git)(包括源代码提交)。项目所有者希望将结果源代码保存在他的github帐户中。如何将我的Assembla提交内容连接到github?我只能找到相反的帖子。

感谢您的帮助。

3 个答案:

答案 0 :(得分:2)

我为Assembla工作 - 我们即将发布一个功能(现在没有ETA),允许你运行服务器端挂钩 - 这可以使用。

我们还有SSH工具,允许您在服务器上运行任意代码,可以检出并推送到github。

但是如果你想手动完成,你可以在本地存储库中为github添加一个遥控器,然后直接推送到它:


git clone git@git.assembla.com:REPO.git
git add remote github git@github.com:user/REPO.git
git push github master

答案 1 :(得分:0)

您好@Michael和@timjeep,我手动尝试了这个,但它没有用。经过几次尝试,我意识到了

git clone git@git.assembla.com:REPO.git
git remote add github git@github.com:user/REPO.git
git push github master

它奏效了。只需更改“添加”和“远程”的顺序即可。

答案 2 :(得分:0)

@timjeep我目前在Assembla工作。我们发布了一个连接器工具来同步你的github repo和一个组件。如果您对http://blog.assembla.com/why-you-need-application-connectors

感兴趣,可以在此链接