Android 最好的应用程序版本控制?
好的,我的应用程序即将作为测试版发布。由于 ACRA,它还具有错误报告功能。
现在我想更新测试版并修复已报告的任何错误。
但我当然想保留原始发布的副本,以便我可以找出错误和不存在的问题。
然后,随着最终版本的发布,我希望对每个发布的版本执行相同的操作。
所以我需要某种版本控制系统。我对这一切都很陌生,所以我不确定最好/最简单的方法是什么。
我用谷歌搜索了一下,似乎有很多版本控制系统,其中有很多我并不真正需要的功能。
但只要能轻松地完成我想要的事情,我就会很高兴。我也在使用 eclipse,所以如果能有一些与之相配的东西就太好了。
我不太确定它是如何工作的,因此我们将不胜感激。
谢谢!
Ok so I have my app that I am about to release as a beta. It also has bug reporting feature thanks to ACRA.
Now I want to be updating the beta and also fix any bugs that has been reported.
But of course I would want to keep the original released copy so that I can figure out the bugs and what not.
And then as final versions get released I would want to do the same with each released version.
So I need some kind of version control system. I am new to all this so I'm not sure what the best/simplest way to go about doing so.
I'v googled around and there seems to be numerous revision control systems with a lot of features I don't really need.
But as long at its easy to do what I'm looking for I'll be happy with it. I am also using eclipse so something that goes great with it would be nice.
I'm not too sure how it would all work so any help is appreciated.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您使用的是 Eclipse,并且所有 Eclipse 项目都使用 Git,因此您可以在项目中使用 DVCS(分布式版本控制系统)。
请参阅 Eclipse 和 EGit:教程,结合 Git 教程。
替代文本 http://www.vogella.de/articles/EGit/images/ repositoryview10.gif
注意:这个其他教程介绍了 EGit 和 Mercurial(其他 DVCS)插件。
所以你有选择..
Since you are using Eclipse, and all Eclipse projects are using Git, you could use that DVCS (Distributed Version Control System) with your project.
See Eclipse and EGit: Tutorial, combined with the Git Tutorial.
alt text http://www.vogella.de/articles/EGit/images/repositoryview10.gif
Note: this other tutorial introduces both EGit, and Mercurial (other DVCS) plugins.
So you have the choice..