如何通过 git/patch/* 创建 Rietveld 补丁?
我有一个文件,其中添加了 print 语句,这样
print "hello" // this is a change
----- file -------
我的 Git 提交树中就有了更改。
我想要一个可用于 Rietveld 的补丁。
当我在 Data
处拥有更改后的文件,而在 Base
处拥有未更改的文件时,我会得到以下信息。
替代文本 http://files.getdropbox.com/u/175564/codepreview- patch.png
你如何制作我可以为 Rietveld 提供的补丁?
I have a file where I added a print -statement such that
print "hello" // this is a change
----- file -------
I have the change in my Git's commit tree.
I would like to have a patch which I can use for Rietveld.
I get the following when I have the changed file at Data
, while the unchanged file at Base
.
alt text http://files.getdropbox.com/u/175564/codepreview-patch.png
How can you make a patch which I can give for Rietveld?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在当前状态下,Rietveld r530 在线补丁解析器仅理解基于 SVN 的补丁 - 不支持 Mercurial 或 Git 格式。 这就是为什么建议使用 upload.py 实用程序发送补丁。
At the current state Rietveld r530 online patch parser understands only SVN based patches - no Mercurial or Git format. That's why it is advised to use upload.py utility for sending patches.