登录gerrit后,从download下拉菜单中,选择path-File,选择diff.zip格式下载。
下载后解压缩,会得到一个diff扩展名的文件。使用这个文件同步修改到本地
先检查patch文件:git apply --stat patchfile.diff
检查能否应用成功:git apply --check patchfile.diff
打补丁:git am --signoff < patchfile.diff
(使用-s或--signoff选项,可以commit信息中加入Signed-off-by信息)
Tags:
gerrit git
gerrit git