私は自分のプロジェクト (ソース コードの提出を含む) に Assembla (git を使用) を使用しています。プロジェクト オーナーは、結果のソース コードを自分の github アカウントに保存したいと考えています。Assembla の提出物を github に接続するにはどうすればよいですか? 逆に尋ねる投稿しか見つかりません。
助けてくれてありがとう。
I work for Assembla - we are about to release a feature (no ETA right now) that allows you to run server-side hooks - this could be utilized.
We also have the SSH tool that would allow you to run arbitrary code on a server, that could check out and push up to github.
But if you want to do it manually, you can add a remote to your local repository for github and just push up to it:
git clone git@git.assembla.com:REPO.git
git add remote github git@github.com:user/REPO.git
git push github master
@timjeep私は現在Assemblaで働いています。Github レポジトリをアセンブラ レポジトリと同期するためのコネクタ ツールをリリースしました。興味がある場合のリンクは次のとおりですhttp://blog.assembla.com/why-you-need-application-connectors
こんにちは@Michaelと@timjeep、これを手動で試しましたが、うまくいきませんでした。数回試した後、私は
git clone git@git.assembla.com:REPO.git
git remote add github git@github.com:user/REPO.git
git push github master
出来た。「追加」と「リモート」の順序を変更するだけで機能します。