将 Assembla(或类似的)与 AppHarbor(或类似的,如 heroku)集成
我正在从事一个在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用一个命令推送所有项目。
然后,对于您想要推送到的每个附加存储库:
然后,当您执行 git push heroku 时,它将更新您的所有存储库和heroku。
You can push all projects with one command.
Then for each additional repo you want to push to:
Then when you do
git push heroku
it will update all of your repos and heroku.是的,您可以添加任意数量的遥控器(github、assembla)并专门使用以下语法推送到它们:
要在 github 上添加遥控器,您可以执行以下操作:
然后您可以推送到 appharbor 进行部署,但始终从 github 拉取。
Yes, you can add as many remotes as you like (github, assembla) and push to them specifically using this syntax:
To add a remote on github you would do this:
Then you can push to appharbor to deploy, but always pull from github.