git 如何使用 BitBucket 进行发布、构建和/或快照?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/29887925/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How do I make a releases, builds, and/or snapshots with BitBucket?
提问by Meeesh
I would like to be able to make releases and builds for my game.
I know GitHub has releases, but I am using BitBucket instead.
我希望能够为我的游戏发布和构建。
我知道 GitHub 有发布版本,但我使用的是 BitBucket。
Does anyone know how to make releases with BitBucket as like a checkpoint so I can just have the files documented for every update?
有谁知道如何像检查点一样使用 BitBucket 进行发布,以便我可以为每次更新记录文件?
采纳答案by VonC
As I mentioned before, BitBucket doesn't support the GitHub-like release feature. Its FAQstill mention:
正如我之前提到的,BitBucket 不支持类似 GitHub 的发布功能。它的常见问题仍然提到:
For binary or executable storage, we recommend you look into file hosting services such as DropBox, rsync, rsnapshot, rdiff-backup, and so forth. Still not sure what to do? Review this post on stackoverflow for more ideas.
对于二进制或可执行存储,我们建议您查看文件托管服务,例如 DropBox、rsync、rsnapshot、rdiff-backup 等。仍然不确定该怎么做?查看关于 stackoverflow 的这篇文章以获得更多想法。
For a BitBucket repo, you still have a soft limit to 1GB and an hard limit to 2GB.
对于 BitBucket 存储库,您仍然有1GB的软限制和 2GB 的硬限制。
回答by cogitoergosum
BitBucket Pipelines allows automatic builds and the output can be pushed to BitBucket Downloads.
BitBucket Pipelines 允许自动构建,输出可以推送到 BitBucket 下载。
BitBucket Pipelines to BitBucket Downloads
Hope this helps.
希望这可以帮助。