使用 code igniter 和 git 进行代码协作的练习
我正在与几个队友合作开发一个使用 GIT 进行源代码控制的 codeigniter 项目。问题是,当很少有人编写代码时,可能会产生意想不到的错误。
如何防止这种情况发生?测试脚本,测试人员?
I am working with few teammates for a codeigniter project using GIT for source control. Problem is when few peoples work on the code, it might create unexpected bugs.
How to prevent this? Test script, tester?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您会对测试驱动开发(TDD)感兴趣。这允许您的团队为代码中的每个方法/函数创建测试,以判断该方法/函数是否按预期执行。 codeigniter 中有很多用于进行 TDD 的资源。看一下这里:
http://www.google.com/search?gcx=w&sourceid=chrome&ie=UTF-8&q=codeigniter+test+driven+development
I think you'd be interested in test driven development (TDD). This allows your team to create tests for each method/function in your code that can tell if that method/function is executing as expected. There are quite a few resources for doing TDD within codeigniter. Take a look here:
http://www.google.com/search?gcx=w&sourceid=chrome&ie=UTF-8&q=codeigniter+test+driven+development
我认为你首先需要了解 Git 是如何工作的。这可能会解决你的大部分问题。请参阅Gitref 。这是关于如何在任何项目中使用 git 的良好而准确的描述。这些基础知识适用于所有编程语言、框架和平台。
希望这能解决您的问题...
I think you first need to understand how Git works.This will probably solve most of your problems. ReferGitref . This a good and precise description of how to use git for any projects. These basics apply to all programming languages, frameworks and platforms.
Hope this solves your problems...