将 Assembla(或类似的)与 AppHarbor(或类似的,如 heroku)集成

发布于 2024-11-25 05:55:15 字数 200 浏览 2 评论 0原文

我正在从事一个在 appharbor 托管的项目(如 .net 的 heroku)。它使用 git push 上传代码(我第一次使用这样的环境)。

问题是,现在我怀念经典 GIT 或 SVN 存储库的功能,比如查看网站中的代码、票证等。

我的问题是:我可以将 assembla 与 appharbor 集成,让我发送只编写一次代码,并在两个平台上都有它?

I'm working in a project that is being hosted in appharbor (like heroku for .net). It use git push to upload the code (my first time ever working with such environment).

The thing is that now I miss the features of a classic GIT or SVN repository, like seeing the code in a web site, tickets, etc.

My question is: Can I integrate for example assembla with appharbor in a way the let me send the code only once, and have it in both plataforms?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眼前雾蒙蒙 2024-12-02 05:55:16

您可以使用一个命令推送所有项目。

git remote set-url --add --push all url = heroku:path/proj.git

然后,对于您想要推送到的每个附加存储库:

 git remote add all github:path/proj.git
 git remote add all github:path/proj2.git

然后,当您执行 git push heroku 时,它将更新您的所有存储库和heroku。

You can push all projects with one command.

git remote set-url --add --push all url = heroku:path/proj.git

Then for each additional repo you want to push to:

 git remote add all github:path/proj.git
 git remote add all github:path/proj2.git

Then when you do git push heroku it will update all of your repos and heroku.

紫﹏色ふ单纯 2024-12-02 05:55:16

是的,您可以添加任意数量的遥控器(github、assembla)并专门使用以下语法推送到它们:

git push github

要在 github 上添加遥控器,您可以执行以下操作:

git remote add github [email protected]/your_user:YourRepo.git

然后您可以推送到 appharbor 进行部署,但始终从 github 拉取。

Yes, you can add as many remotes as you like (github, assembla) and push to them specifically using this syntax:

git push github

To add a remote on github you would do this:

git remote add github [email protected]/your_user:YourRepo.git

Then you can push to appharbor to deploy, but always pull from github.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文