如何为 Kohana 创建补丁?
几个小时前我在 Kohana 发现了一个错误并修复了它。之后,我在 Redmine 上发现了一张描述相同问题的票。现在我想为该错误创建补丁,但我不知道该怎么做。有人可以给个建议吗?
I've found a bug at Kohana couple hours ago and fixed it. After that I found a ticket at Redmine describing same issue. Now I want to create patch for the bug but I dont know how to do this. Could anyone give an advice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
git diff > diff.patch
更好的方法是在 github 上分叉存储库,提交更改,然后发送拉取请求。
git diff > diff.patch
A better way would be to fork the repository on github, commit your change, then send a pull request.